Flatland needs a superhero! Recently, swarms of killer ants have been invading Flatland, and no one there can figure out how to stop these dastardly denizens. Fortunately, you — as a higher-dimensional being — have the chance to become a hero in the eyes of Flatland's citizens. Your job is to "freeze" each swarm of ants by trapping it inside a parallelogram.
For every swarm you must find an enclosing parallelogram of minimum area. Once a minimum-area parallelogram is placed around a swarm, the ants are effectively frozen in place and can no longer terrorize the inhabitants of the plane.
Write a program that, for each swarm, reports the area of its minimum-area enclosing parallelogram.
The first line contains a single integer $s$ ($1 \le s \le 20$), the number of ant swarms.
Each swarm is described as follows:
Within a single swarm, no two ants share the same $(x, y)$ location. Each swarm is handled independently of the others. All coordinates are given in fixed-point decimal notation with exactly four digits after the decimal point (for example, dddd.dddd). A swarm may admit several distinct parallelograms that all achieve the minimum area, but only that minimum area is asked for, so the answer is unique.
For each swarm, print one line in the form:
Swarm i Parallelogram Area: A
where $i$ ($1 \le i \le s$) is the swarm number and $A$ is the minimum area of an enclosing parallelogram for that swarm. Perform every computation with 64-bit IEEE floating-point numbers, and print $A$ in fixed-point decimal notation rounded to exactly four digits after the decimal point.