From 891526399e6a6ca215ec93bba6edb50848268836 Mon Sep 17 00:00:00 2001 From: Walther Date: Fri, 20 Oct 2023 23:58:45 +0300 Subject: [PATCH] improvement: move priority to objects, materials to separate list --- clovers-cli/src/json_scene.rs | 2 +- clovers/src/bvhnode.rs | 38 +++---- clovers/src/colorize.rs | 7 +- clovers/src/normals.rs | 5 +- clovers/src/objects.rs | 3 + clovers/src/objects/boxy.rs | 3 + clovers/src/objects/constant_medium.rs | 3 + clovers/src/objects/gltf.rs | 3 + clovers/src/objects/moving_sphere.rs | 3 + clovers/src/objects/quad.rs | 3 + clovers/src/objects/rotate.rs | 3 + clovers/src/objects/sphere.rs | 3 + clovers/src/objects/stl.rs | 3 + clovers/src/objects/translate.rs | 3 + clovers/src/objects/triangle.rs | 3 + clovers/src/scenes.rs | 56 +++++---- scenes/boing.json | 46 ++++---- scenes/colorchecker.js | 39 ++++--- scenes/colorchecker.json | 2 +- scenes/cornell.json | 19 +--- scenes/cornell_with_smoke.json | 93 +++++++-------- scenes/debug_scene.js | 146 ------------------------ scenes/debug_scene.json | 1 - scenes/dispersive.json | 85 +++++--------- scenes/gltf_scifi_helmet.json | 25 ++-- scenes/gltf_water_bottle.json | 25 ++-- scenes/grey.json | 34 +++--- scenes/one_weekend.js | 97 +++++++++------- scenes/one_weekend.json | 2 +- scenes/scene.json | 151 ++++++++++++------------- scenes/spatial_checker_smoke.json | 26 ++--- scenes/the_next_week.js | 97 ++++++++-------- scenes/the_next_week.json | 2 +- 33 files changed, 419 insertions(+), 612 deletions(-) delete mode 100644 scenes/debug_scene.js delete mode 100644 scenes/debug_scene.json diff --git a/clovers-cli/src/json_scene.rs b/clovers-cli/src/json_scene.rs index 76ad7937..aaf7d8cd 100644 --- a/clovers-cli/src/json_scene.rs +++ b/clovers-cli/src/json_scene.rs @@ -18,6 +18,6 @@ pub(crate) fn initialize<'scene>( let scene_file: SceneFile = serde_json::from_str(&contents)?; info!("Initializing the scene"); let scene: Scene = scenes::initialize(scene_file, opts.width, opts.height); - info!("Count of nodes in the BVH tree: {}", scene.objects.count()); + info!("Count of nodes in the BVH tree: {}", scene.hitables.count()); Ok(scene) } diff --git a/clovers/src/bvhnode.rs b/clovers/src/bvhnode.rs index 5bc672da..44d308e2 100644 --- a/clovers/src/bvhnode.rs +++ b/clovers/src/bvhnode.rs @@ -28,7 +28,7 @@ pub struct BVHNode<'scene> { impl<'scene> BVHNode<'scene> { /// Create a new `BVHNode` tree from a given list of [Object](crate::objects::Object)s #[must_use] - pub fn from_list(mut objects: Vec, time_0: Float, time_1: Float) -> BVHNode { + pub fn from_list(mut hitables: Vec, time_0: Float, time_1: Float) -> BVHNode { // Initialize two child nodes let left: Box; let right: Box; @@ -38,7 +38,7 @@ impl<'scene> BVHNode<'scene> { // What is the axis with the largest span? // TODO: horribly inefficient, improve! let bounding: AABB = - vec_bounding_box(&objects, time_0, time_1).expect("No bounding box for objects"); + vec_bounding_box(&hitables, time_0, time_1).expect("No bounding box for objects"); let spans = [ bounding.axis(0).size(), bounding.axis(1).size(), @@ -50,12 +50,12 @@ impl<'scene> BVHNode<'scene> { let comparator = comparators[axis]; // How many objects do we have? - let object_span = objects.len(); + let object_span = hitables.len(); if object_span == 1 { // If we only have one object, add one and an empty object. // TODO: can this hack be removed? - left = Box::new(objects[0].clone()); + left = Box::new(hitables[0].clone()); right = Box::new(Hitable::Empty(Empty {})); let bounding_box = left.bounding_box(time_0, time_1).unwrap().clone(); // TODO: remove unwrap return BVHNode { @@ -66,14 +66,14 @@ impl<'scene> BVHNode<'scene> { } else if object_span == 2 { // If we are comparing two objects, perform the comparison // Insert the child nodes in order - match comparator(&objects[0], &objects[1]) { + match comparator(&hitables[0], &hitables[1]) { Ordering::Less => { - left = Box::new(objects[0].clone()); - right = Box::new(objects[1].clone()); + left = Box::new(hitables[0].clone()); + right = Box::new(hitables[1].clone()); } Ordering::Greater => { - left = Box::new(objects[1].clone()); - right = Box::new(objects[0].clone()); + left = Box::new(hitables[1].clone()); + right = Box::new(hitables[0].clone()); } Ordering::Equal => { // TODO: what should happen here? @@ -82,29 +82,29 @@ impl<'scene> BVHNode<'scene> { } } else if object_span == 3 { // Three objects: create one bare object and one BVHNode with two objects - objects.sort_by(comparator); - left = Box::new(objects[0].clone()); + hitables.sort_by(comparator); + left = Box::new(hitables[0].clone()); right = Box::new(Hitable::BVHNode(BVHNode { - left: Box::new(objects[1].clone()), - right: Box::new(objects[2].clone()), + left: Box::new(hitables[1].clone()), + right: Box::new(hitables[2].clone()), bounding_box: AABB::surrounding_box( // TODO: no unwrap? - objects[1].bounding_box(time_0, time_1).unwrap(), - objects[2].bounding_box(time_0, time_1).unwrap(), + hitables[1].bounding_box(time_0, time_1).unwrap(), + hitables[2].bounding_box(time_0, time_1).unwrap(), ), })); } else { // Otherwise, recurse - objects.sort_by(comparator); + hitables.sort_by(comparator); // Split the vector; divide and conquer let mid = object_span / 2; - let objects_right = objects.split_off(mid); + let hitables_right = hitables.split_off(mid); left = Box::new(Hitable::BVHNode(BVHNode::from_list( - objects, time_0, time_1, + hitables, time_0, time_1, ))); right = Box::new(Hitable::BVHNode(BVHNode::from_list( - objects_right, + hitables_right, time_0, time_1, ))); diff --git a/clovers/src/colorize.rs b/clovers/src/colorize.rs index 5771aaa1..dde6dd8d 100644 --- a/clovers/src/colorize.rs +++ b/clovers/src/colorize.rs @@ -35,7 +35,10 @@ pub fn colorize( // Send the ray to the scene, and see if it hits anything. // distance_min is set to an epsilon to avoid "shadow acne" that can happen when set to zero - let Some(hit_record) = scene.objects.hit(ray, EPSILON_SHADOW_ACNE, Float::MAX, rng) else { + let Some(hit_record) = scene + .hitables + .hit(ray, EPSILON_SHADOW_ACNE, Float::MAX, rng) + else { // If the ray hits nothing, early return the background color. return bg; }; @@ -77,7 +80,7 @@ pub fn colorize( // Use a probability density function to figure out where to scatter a new ray // TODO: this weighed priority sampling should be adjusted or removed - doesn't feel ideal. let light_ptr = PDF::HitablePDF(HitablePDF::new( - &scene.priority_objects, + &scene.priority_hitables, hit_record.position, )); let mixture_pdf = MixturePDF::new(light_ptr, scatter_record.pdf_ptr); diff --git a/clovers/src/normals.rs b/clovers/src/normals.rs index 99f6e3c7..e840cd8c 100644 --- a/clovers/src/normals.rs +++ b/clovers/src/normals.rs @@ -7,7 +7,10 @@ use rand::rngs::SmallRng; /// Rendering function for getting a normal map in tangent space. Sends a [Ray] to the [Scene], sees what it hits, gets the normal at that point, and returns a color based on the normal mapping colorization. Wikipedia: [Normal mapping](https://en.wikipedia.org/wiki/Normal_mapping). #[must_use] pub fn normal_map(ray: &Ray, scene: &Scene, rng: &mut SmallRng) -> LinSrgb { - let Some(hit_record) = scene.objects.hit(ray, EPSILON_SHADOW_ACNE, Float::MAX, rng) else { + let Some(hit_record) = scene + .hitables + .hit(ray, EPSILON_SHADOW_ACNE, Float::MAX, rng) + else { // If the ray hits nothing, early return black return LinSrgb::new(0.0, 0.0, 0.0); }; diff --git a/clovers/src/objects.rs b/clovers/src/objects.rs index 40e78aa7..04f9d3a9 100644 --- a/clovers/src/objects.rs +++ b/clovers/src/objects.rs @@ -42,6 +42,9 @@ pub use triangle::*; #[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))] /// A list of objects. Allows multiple objects to be used e.g. in a Rotate or Translate object as the target. pub struct ObjectList { + /// Priority + #[cfg_attr(feature = "serde-derive", serde(default))] + pub priority: bool, /// The encased [Object] list pub objects: Vec, } diff --git a/clovers/src/objects/boxy.rs b/clovers/src/objects/boxy.rs index eedebc8f..80fe3059 100644 --- a/clovers/src/objects/boxy.rs +++ b/clovers/src/objects/boxy.rs @@ -15,6 +15,9 @@ use rand::{rngs::SmallRng, Rng}; #[derive(Debug, Clone)] #[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))] pub struct BoxyInit { + /// Used for multiple importance sampling + #[cfg_attr(feature = "serde-derive", serde(default))] + pub priority: bool, /// First corner for the box pub corner_0: Vec3, /// Second, opposing corner for the box diff --git a/clovers/src/objects/constant_medium.rs b/clovers/src/objects/constant_medium.rs index 2e2b8cf3..508df179 100644 --- a/clovers/src/objects/constant_medium.rs +++ b/clovers/src/objects/constant_medium.rs @@ -19,6 +19,9 @@ use super::Object; #[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))] /// `ConstantMediumInit` structure describes the necessary data for constructing a [`ConstantMedium`]. Used with [serde] when importing [`SceneFiles`](crate::scenes::SceneFile). pub struct ConstantMediumInit { + /// Used for multiple importance sampling + #[cfg_attr(feature = "serde-derive", serde(default))] + pub priority: bool, /// The boundary object for the constant medium. This determines the size and shape of the fog object. pub boundary: Box, #[cfg_attr(feature = "serde-derive", serde(default = "default_density"))] diff --git a/clovers/src/objects/gltf.rs b/clovers/src/objects/gltf.rs index 75313fb2..eed09906 100644 --- a/clovers/src/objects/gltf.rs +++ b/clovers/src/objects/gltf.rs @@ -24,6 +24,9 @@ use crate::{ #[derive(Clone, Debug)] #[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))] pub struct GLTFInit { + /// Used for multiple importance sampling + #[cfg_attr(feature = "serde-derive", serde(default))] + pub priority: bool, /// Path of the .gltf file pub path: String, } diff --git a/clovers/src/objects/moving_sphere.rs b/clovers/src/objects/moving_sphere.rs index 24882a13..cc0519e7 100644 --- a/clovers/src/objects/moving_sphere.rs +++ b/clovers/src/objects/moving_sphere.rs @@ -15,6 +15,9 @@ use rand::rngs::SmallRng; #[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))] /// `SphereInit` structure describes the necessary data for constructing a [`Sphere`](super::Sphere). Used with [serde] when importing [`SceneFile`](crate::scenes::SceneFile)s. pub struct MovingSphereInit { + /// Used for multiple importance sampling + #[cfg_attr(feature = "serde-derive", serde(default))] + pub priority: bool, /// Center point of the sphere at time_0 pub center_0: Vec3, /// Center point of the sphere at time_1 diff --git a/clovers/src/objects/quad.rs b/clovers/src/objects/quad.rs index 06a188da..80dfab5a 100644 --- a/clovers/src/objects/quad.rs +++ b/clovers/src/objects/quad.rs @@ -16,6 +16,9 @@ use rand::Rng; #[derive(Clone, Debug)] #[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))] pub struct QuadInit { + /// Used for multiple importance sampling + #[cfg_attr(feature = "serde-derive", serde(default))] + pub priority: bool, /// Corner point pub q: Vec3, /// Vector describing the u side diff --git a/clovers/src/objects/rotate.rs b/clovers/src/objects/rotate.rs index 10bb01fd..ebb5e4fa 100644 --- a/clovers/src/objects/rotate.rs +++ b/clovers/src/objects/rotate.rs @@ -15,6 +15,9 @@ use super::Object; #[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))] /// `RotateInit` structure describes the necessary data for constructing a [`RotateY`]. Used with [serde] when importing [`SceneFile`](crate::scenes::SceneFile)s. pub struct RotateInit { + /// Used for multiple importance sampling + #[cfg_attr(feature = "serde-derive", serde(default))] + pub priority: bool, /// The encased [Object] to rotate pub object: Box, /// Angle to rotate the object, in degrees diff --git a/clovers/src/objects/sphere.rs b/clovers/src/objects/sphere.rs index 272d6c14..8dacfde4 100644 --- a/clovers/src/objects/sphere.rs +++ b/clovers/src/objects/sphere.rs @@ -15,6 +15,9 @@ use rand::{rngs::SmallRng, Rng}; #[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))] /// `SphereInit` structure describes the necessary data for constructing a [Sphere]. Used with [serde] when importing [`SceneFile`](crate::scenes::SceneFile)s. pub struct SphereInit { + /// Used for multiple importance sampling + #[cfg_attr(feature = "serde-derive", serde(default))] + pub priority: bool, /// Center of the sphere. pub center: Vec3, /// Radius of the sphere. diff --git a/clovers/src/objects/stl.rs b/clovers/src/objects/stl.rs index a88d49ea..62fe4cab 100644 --- a/clovers/src/objects/stl.rs +++ b/clovers/src/objects/stl.rs @@ -71,6 +71,9 @@ impl<'scene> HitableTrait for STL<'scene> { #[derive(Clone, Debug)] #[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))] pub struct STLInit { + /// Used for multiple importance sampling + #[cfg_attr(feature = "serde-derive", serde(default))] + pub priority: bool, /// Path of the .stl file pub path: String, /// Material to use for the .stl object diff --git a/clovers/src/objects/translate.rs b/clovers/src/objects/translate.rs index b13e1cad..672f1bf4 100644 --- a/clovers/src/objects/translate.rs +++ b/clovers/src/objects/translate.rs @@ -15,6 +15,9 @@ use super::Object; #[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))] /// `TranslateInit` structure describes the necessary data for constructing a [Translate] object. Used with [serde] when importing [`SceneFile`](crate::scenes::SceneFile)s. pub struct TranslateInit { + /// Used for multiple importance sampling + #[cfg_attr(feature = "serde-derive", serde(default))] + pub priority: bool, /// The encased [Object] to translate i.e. move pub object: Box, /// The vector describing the movement of the object diff --git a/clovers/src/objects/triangle.rs b/clovers/src/objects/triangle.rs index aebb97cf..0653cf10 100644 --- a/clovers/src/objects/triangle.rs +++ b/clovers/src/objects/triangle.rs @@ -17,6 +17,9 @@ use rand::Rng; #[derive(Clone, Debug)] #[cfg_attr(feature = "serde-derive", derive(serde::Serialize, serde::Deserialize))] pub struct TriangleInit { + /// Used for multiple importance sampling + #[cfg_attr(feature = "serde-derive", serde(default))] + pub priority: bool, /// Corner point pub q: Vec3, /// Vector describing the u side diff --git a/clovers/src/scenes.rs b/clovers/src/scenes.rs index 7e2bd03a..56901594 100644 --- a/clovers/src/scenes.rs +++ b/clovers/src/scenes.rs @@ -17,13 +17,13 @@ use tracing::info; /// A representation of the scene that is being rendered. pub struct Scene<'scene> { /// Bounding-volume hierarchy of [Hitable] objects in the scene. This could, as currently written, be any [Hitable] - in practice, we place the root of the [BVHNode] tree here. - pub objects: BVHNode<'scene>, + pub hitables: BVHNode<'scene>, /// The camera object used for rendering the scene. pub camera: Camera, /// The background color to use when the rays do not hit anything in the scene. pub background_color: Srgb, // TODO: make into Texture or something? /// A [BVHNode] tree of prioritized objects - e.g. glass items or lights - that affect the biased sampling of the scene. Wrapped into a [Hitable] for convenience reasons (see various PDF functions). - pub priority_objects: Hitable<'scene>, + pub priority_hitables: Hitable<'scene>, } impl<'scene> Scene<'scene> { @@ -33,16 +33,16 @@ impl<'scene> Scene<'scene> { time_0: Float, time_1: Float, camera: Camera, - objects: Vec>, - priority_objects: Vec>, + hitables: Vec>, + priority_hitables: Vec>, background_color: Srgb, ) -> Scene<'scene> { Scene { - objects: BVHNode::from_list(objects, time_0, time_1), + hitables: BVHNode::from_list(hitables, time_0, time_1), camera, background_color, - priority_objects: Hitable::BVHNode(BVHNode::from_list( - priority_objects, + priority_hitables: Hitable::BVHNode(BVHNode::from_list( + priority_hitables, time_0, time_1, )), @@ -62,7 +62,6 @@ pub struct SceneFile { objects: Vec, #[cfg_attr(feature = "serde-derive", serde(default))] materials: Vec, - priority_objects: Vec, } /// Initializes a new [Scene] instance by parsing the contents of a [`SceneFile`] structure and then using those details to construct the [Scene]. @@ -90,26 +89,39 @@ pub fn initialize<'scene>(scene_file: SceneFile, width: u32, height: u32) -> Sce #[cfg(feature = "traces")] info!("Creating a flattened list from the objects"); - let hitables: Vec = objects_to_hitables(scene_file.objects, materials); - let priority_objects: Vec = - objects_to_hitables(scene_file.priority_objects, materials); + let mut hitables: Vec = Vec::new(); + let mut priority_hitables: Vec = Vec::new(); + + // TODO: this isn't the greatest ergonomics, but it gets the job done for now + for object in scene_file.objects { + if match &object { + Object::Boxy(i) => i.priority, + Object::ConstantMedium(i) => i.priority, + Object::MovingSphere(i) => i.priority, + Object::ObjectList(i) => i.priority, + Object::Quad(i) => i.priority, + Object::RotateY(i) => i.priority, + Object::Sphere(i) => i.priority, + Object::STL(i) => i.priority, + Object::GLTF(i) => i.priority, + Object::Translate(i) => i.priority, + Object::Triangle(i) => i.priority, + } { + let hitable = object_to_hitable(object, materials); + hitables.push(hitable.clone()); + priority_hitables.push(hitable); + } else { + let hitable = object_to_hitable(object, materials); + hitables.push(hitable.clone()); + } + } Scene::new( time_0, time_1, camera, hitables, - priority_objects, + priority_hitables, background_color, ) } - -#[must_use] -fn objects_to_hitables(objects: Vec, materials: &[SharedMaterial]) -> Vec> { - let mut hitables = Vec::new(); - for obj in objects { - hitables.push(object_to_hitable(obj, materials)); - } - - hitables -} diff --git a/scenes/boing.json b/scenes/boing.json index 6f77e242..cd2485cc 100644 --- a/scenes/boing.json +++ b/scenes/boing.json @@ -13,44 +13,36 @@ "objects": [ { "kind": "Quad", + "priority": true, "q": [-100, 80, -100], "u": [200, 0, 0], "v": [0, 0, 100], - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [2.5, 2.5, 2.5] - } - } + "material": "lamp" }, { "kind": "Sphere", "center": [0, 0, 0], "radius": 8, - "material": { - "kind": "Lambertian", - "albedo": { - "kind": "SurfaceChecker", - "even": [1, 0, 0], - "odd": [1, 1, 1], - "density": 12 - } - } + "material": "checker" } ], - "priority_objects": [ + "materials": [ { - "kind": "Quad", - "q": [-100, 80, -100], - "u": [200, 0, 0], - "v": [0, 0, 100], - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [2.5, 2.5, 2.5] - } + "name": "lamp", + "kind": "DiffuseLight", + "emit": { + "kind": "SolidColor", + "color": [2.5, 2.5, 2.5] + } + }, + { + "name": "checker", + "kind": "Lambertian", + "albedo": { + "kind": "SurfaceChecker", + "even": [1, 0, 0], + "odd": [1, 1, 1], + "density": 12 } } ] diff --git a/scenes/colorchecker.js b/scenes/colorchecker.js index fae25bf6..dc65a633 100644 --- a/scenes/colorchecker.js +++ b/scenes/colorchecker.js @@ -18,27 +18,29 @@ let scene = { }, background_color: [0.0, 0.0, 0.0], objects: [], - priority_objects: [], + materials: [], }; // Big light for smooth lighting of the entire scene let brightness = 2.5; +let lamp_material = { + name: "big lamp", + kind: "DiffuseLight", + emit: { + kind: "SolidColor", + color: [brightness, brightness, brightness], + }, +}; +scene.materials.push(lamp_material); let light = { kind: "Quad", + priority: true, q: [-100.0, 80.0, -100.0], u: [200.0, 0.0, 0.0], v: [0.0, 0.0, 200.0], - material: { - kind: "DiffuseLight", - emit: { - kind: "SolidColor", - color: [brightness, brightness, brightness], - }, - }, + material: "big lamp", }; - scene.objects.push(light); -scene.priority_objects.push(light); const colors = [ // Row 1: Natural colors @@ -98,19 +100,22 @@ const ystart = -0.5 * 4 * multiplier + 0.5 * gap; const xstart = 0.5 * 4 * multiplier + 0.5 * gap; colors.forEach((row, y) => { row.forEach(([name, hex], x) => { + let material = { + name, + kind: "Lambertian", + albedo: { + kind: "SolidColor", + color: hexToRgb(hex), + }, + }; + scene.materials.push(material); let quad = { kind: "Quad", // TODO: fix the camera setup, these coordinates are in weird order :| q: [ystart + y * multiplier, width, xstart + x * -multiplier], u: [width, 0.0, 0.0], v: [0.0, 0.0, width], - material: { - kind: "Lambertian", - albedo: { - kind: "SolidColor", - color: hexToRgb(hex), - }, - }, + material: name, }; scene.objects.push(quad); }); diff --git a/scenes/colorchecker.json b/scenes/colorchecker.json index cb949bfc..902c4ab8 100644 --- a/scenes/colorchecker.json +++ b/scenes/colorchecker.json @@ -1 +1 @@ -{"time_0":0,"time_1":1,"camera":{"look_from":[0.000001,30,0],"look_at":[0,0,0],"up":[0,1,0],"vertical_fov":40,"aperture":0,"focus_distance":10},"background_color":[0,0,0],"objects":[{"kind":"Quad","q":[-100,80,-100],"u":[200,0,0],"v":[0,0,200],"material":{"kind":"DiffuseLight","emit":{"kind":"SolidColor","color":[2.5,2.5,2.5]}}},{"kind":"Quad","q":[-5.75,2.5,6.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.45098039215686275,0.3215686274509804,0.26666666666666666]}}},{"kind":"Quad","q":[-5.75,2.5,3.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7607843137254902,0.5882352941176471,0.5098039215686274]}}},{"kind":"Quad","q":[-5.75,2.5,0.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3843137254901961,0.47843137254901963,0.615686274509804]}}},{"kind":"Quad","q":[-5.75,2.5,-2.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3411764705882353,0.4235294117647059,0.2627450980392157]}}},{"kind":"Quad","q":[-5.75,2.5,-5.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5215686274509804,0.5019607843137255,0.6941176470588235]}}},{"kind":"Quad","q":[-5.75,2.5,-8.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.403921568627451,0.7411764705882353,0.6666666666666666]}}},{"kind":"Quad","q":[-2.75,2.5,6.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8392156862745098,0.49411764705882355,0.17254901960784313]}}},{"kind":"Quad","q":[-2.75,2.5,3.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3137254901960784,0.3568627450980392,0.6509803921568628]}}},{"kind":"Quad","q":[-2.75,2.5,0.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7568627450980392,0.35294117647058826,0.38823529411764707]}}},{"kind":"Quad","q":[-2.75,2.5,-2.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3686274509803922,0.23529411764705882,0.4235294117647059]}}},{"kind":"Quad","q":[-2.75,2.5,-5.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.615686274509804,0.7372549019607844,0.25098039215686274]}}},{"kind":"Quad","q":[-2.75,2.5,-8.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8784313725490196,0.6392156862745098,0.1803921568627451]}}},{"kind":"Quad","q":[0.25,2.5,6.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2196078431372549,0.23921568627450981,0.5882352941176471]}}},{"kind":"Quad","q":[0.25,2.5,3.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.27450980392156865,0.5803921568627451,0.28627450980392155]}}},{"kind":"Quad","q":[0.25,2.5,0.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6862745098039216,0.21176470588235294,0.23529411764705882]}}},{"kind":"Quad","q":[0.25,2.5,-2.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9058823529411765,0.7803921568627451,0.12156862745098039]}}},{"kind":"Quad","q":[0.25,2.5,-5.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7333333333333333,0.33725490196078434,0.5843137254901961]}}},{"kind":"Quad","q":[0.25,2.5,-8.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.03137254901960784,0.5215686274509804,0.6313725490196078]}}},{"kind":"Quad","q":[3.25,2.5,6.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9529411764705882,0.9529411764705882,0.9490196078431372]}}},{"kind":"Quad","q":[3.25,2.5,3.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7843137254901961,0.7843137254901961,0.7843137254901961]}}},{"kind":"Quad","q":[3.25,2.5,0.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6274509803921569,0.6274509803921569,0.6274509803921569]}}},{"kind":"Quad","q":[3.25,2.5,-2.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.47843137254901963,0.47843137254901963,0.47843137254901963]}}},{"kind":"Quad","q":[3.25,2.5,-5.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3333333333333333,0.3333333333333333,0.3333333333333333]}}},{"kind":"Quad","q":[3.25,2.5,-8.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.20392156862745098,0.20392156862745098,0.20392156862745098]}}}],"priority_objects":[{"kind":"Quad","q":[-100,80,-100],"u":[200,0,0],"v":[0,0,200],"material":{"kind":"DiffuseLight","emit":{"kind":"SolidColor","color":[2.5,2.5,2.5]}}}]} \ No newline at end of file +{"time_0":0,"time_1":1,"camera":{"look_from":[0.000001,30,0],"look_at":[0,0,0],"up":[0,1,0],"vertical_fov":40,"aperture":0,"focus_distance":10},"background_color":[0,0,0],"objects":[{"kind":"Quad","priority":true,"q":[-100,80,-100],"u":[200,0,0],"v":[0,0,200],"material":"big lamp"},{"kind":"Quad","q":[-5.75,2.5,6.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Dark skin"},{"kind":"Quad","q":[-5.75,2.5,3.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Light skin"},{"kind":"Quad","q":[-5.75,2.5,0.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Blue sky"},{"kind":"Quad","q":[-5.75,2.5,-2.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Foliage"},{"kind":"Quad","q":[-5.75,2.5,-5.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Blue flower"},{"kind":"Quad","q":[-5.75,2.5,-8.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Bluish green"},{"kind":"Quad","q":[-2.75,2.5,6.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Orange"},{"kind":"Quad","q":[-2.75,2.5,3.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Purplish blue"},{"kind":"Quad","q":[-2.75,2.5,0.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Moderate red"},{"kind":"Quad","q":[-2.75,2.5,-2.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Purple"},{"kind":"Quad","q":[-2.75,2.5,-5.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Yellow green"},{"kind":"Quad","q":[-2.75,2.5,-8.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Orange yellow"},{"kind":"Quad","q":[0.25,2.5,6.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Blue"},{"kind":"Quad","q":[0.25,2.5,3.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Green"},{"kind":"Quad","q":[0.25,2.5,0.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Red"},{"kind":"Quad","q":[0.25,2.5,-2.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Yellow"},{"kind":"Quad","q":[0.25,2.5,-5.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Magenta"},{"kind":"Quad","q":[0.25,2.5,-8.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Cyan"},{"kind":"Quad","q":[3.25,2.5,6.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"White"},{"kind":"Quad","q":[3.25,2.5,3.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Neutral 8"},{"kind":"Quad","q":[3.25,2.5,0.25],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Neutral 6.5"},{"kind":"Quad","q":[3.25,2.5,-2.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Neutral 5"},{"kind":"Quad","q":[3.25,2.5,-5.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Neutral 3.5"},{"kind":"Quad","q":[3.25,2.5,-8.75],"u":[2.5,0,0],"v":[0,0,2.5],"material":"Black"}],"materials":[{"name":"big lamp","kind":"DiffuseLight","emit":{"kind":"SolidColor","color":[2.5,2.5,2.5]}},{"name":"Dark skin","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.45098039215686275,0.3215686274509804,0.26666666666666666]}},{"name":"Light skin","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7607843137254902,0.5882352941176471,0.5098039215686274]}},{"name":"Blue sky","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3843137254901961,0.47843137254901963,0.615686274509804]}},{"name":"Foliage","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3411764705882353,0.4235294117647059,0.2627450980392157]}},{"name":"Blue flower","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5215686274509804,0.5019607843137255,0.6941176470588235]}},{"name":"Bluish green","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.403921568627451,0.7411764705882353,0.6666666666666666]}},{"name":"Orange","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8392156862745098,0.49411764705882355,0.17254901960784313]}},{"name":"Purplish blue","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3137254901960784,0.3568627450980392,0.6509803921568628]}},{"name":"Moderate red","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7568627450980392,0.35294117647058826,0.38823529411764707]}},{"name":"Purple","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3686274509803922,0.23529411764705882,0.4235294117647059]}},{"name":"Yellow green","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.615686274509804,0.7372549019607844,0.25098039215686274]}},{"name":"Orange yellow","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8784313725490196,0.6392156862745098,0.1803921568627451]}},{"name":"Blue","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2196078431372549,0.23921568627450981,0.5882352941176471]}},{"name":"Green","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.27450980392156865,0.5803921568627451,0.28627450980392155]}},{"name":"Red","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6862745098039216,0.21176470588235294,0.23529411764705882]}},{"name":"Yellow","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9058823529411765,0.7803921568627451,0.12156862745098039]}},{"name":"Magenta","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7333333333333333,0.33725490196078434,0.5843137254901961]}},{"name":"Cyan","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.03137254901960784,0.5215686274509804,0.6313725490196078]}},{"name":"White","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9529411764705882,0.9529411764705882,0.9490196078431372]}},{"name":"Neutral 8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7843137254901961,0.7843137254901961,0.7843137254901961]}},{"name":"Neutral 6.5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6274509803921569,0.6274509803921569,0.6274509803921569]}},{"name":"Neutral 5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.47843137254901963,0.47843137254901963,0.47843137254901963]}},{"name":"Neutral 3.5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3333333333333333,0.3333333333333333,0.3333333333333333]}},{"name":"Black","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.20392156862745098,0.20392156862745098,0.20392156862745098]}}]} \ No newline at end of file diff --git a/scenes/cornell.json b/scenes/cornell.json index 2b14acf5..57ea2619 100644 --- a/scenes/cornell.json +++ b/scenes/cornell.json @@ -53,6 +53,7 @@ }, { "kind": "Quad", + "priority": true, "q": [113, 554, 127], "u": [330, 0, 0], "v": [0, 0, 305], @@ -78,23 +79,7 @@ }, { "kind": "Sphere", - "center": [190, 90, 190], - "radius": 90, - "material": "Dense flint glass SF10", - "comment": "glass sphere" - } - ], - "priority_objects": [ - { - "kind": "Quad", - "q": [113, 554, 127], - "u": [330, 0, 0], - "v": [0, 0, 305], - "comment": "big ceiling light", - "material": "lamp" - }, - { - "kind": "Sphere", + "priority": true, "center": [190, 90, 190], "radius": 90, "material": "Dense flint glass SF10", diff --git a/scenes/cornell_with_smoke.json b/scenes/cornell_with_smoke.json index de57cfc7..4b3b56f7 100644 --- a/scenes/cornell_with_smoke.json +++ b/scenes/cornell_with_smoke.json @@ -16,13 +16,7 @@ "q": [555, 0, 0], "u": [0, 0, 555], "v": [0, 555, 0], - "material": { - "kind": "Lambertian", - "albedo": { - "kind": "SolidColor", - "color": [0.12, 0.45, 0.15] - } - }, + "material": "green wall", "comment": "green wall, left" }, { @@ -30,13 +24,7 @@ "q": [0, 0, 555], "u": [0, 0, -555], "v": [0, 555, 0], - "material": { - "kind": "Lambertian", - "albedo": { - "kind": "SolidColor", - "color": [0.65, 0.05, 0.05] - } - }, + "material": "red wall", "comment": "red wall, right" }, { @@ -44,13 +32,7 @@ "q": [0, 0, 0], "u": [555, 0, 0], "v": [0, 0, 555], - "material": { - "kind": "Lambertian", - "albedo": { - "kind": "SolidColor", - "color": [0.73, 0.73, 0.73] - } - }, + "material": "grey wall", "comment": "floor" }, { @@ -58,13 +40,7 @@ "q": [0, 555, 0], "u": [555, 0, 0], "v": [0, 0, 555], - "material": { - "kind": "Lambertian", - "albedo": { - "kind": "SolidColor", - "color": [0.73, 0.73, 0.73] - } - }, + "material": "grey wall", "comment": "ceiling" }, { @@ -72,27 +48,16 @@ "q": [0, 0, 555], "u": [555, 0, 0], "v": [0, 555, 0], - "material": { - "kind": "Lambertian", - "albedo": { - "kind": "SolidColor", - "color": [0.73, 0.73, 0.73] - } - }, + "material": "grey wall", "comment": "back wall" }, { "kind": "Quad", + "priority": true, "q": [113, 554, 127], "u": [330, 0, 0], "v": [0, 0, 305], - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [7, 7, 7] - } - }, + "material": "lamp", "comment": "big ceiling light" }, { @@ -138,20 +103,38 @@ } } ], - "priority_objects": [ + "materials": [ { - "kind": "Quad", - "q": [113, 554, 127], - "u": [330, 0, 0], - "v": [0, 0, 305], - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [7, 7, 7] - } - }, - "comment": "big ceiling light" + "name": "lamp", + "kind": "DiffuseLight", + "emit": { + "kind": "SolidColor", + "color": [7, 7, 7] + } + }, + { + "name": "green wall", + "kind": "Lambertian", + "albedo": { + "kind": "SolidColor", + "color": [0.12, 0.45, 0.15] + } + }, + { + "name": "red wall", + "kind": "Lambertian", + "albedo": { + "kind": "SolidColor", + "color": [0.65, 0.05, 0.05] + } + }, + { + "name": "grey wall", + "kind": "Lambertian", + "albedo": { + "kind": "SolidColor", + "color": [0.73, 0.73, 0.73] + } } ] } diff --git a/scenes/debug_scene.js b/scenes/debug_scene.js deleted file mode 100644 index 6e055b80..00000000 --- a/scenes/debug_scene.js +++ /dev/null @@ -1,146 +0,0 @@ -let fs = require("fs"); -let path = require("path"); - -// Camera staring down from above, centered around origin -let scene = { - time_0: 0.0, - time_1: 1.0, - camera: { - look_from: [ - // TODO: fix the bad camera behavior with zero... - 1e-6, 30.0, 0.0, - ], - look_at: [0.0, 0.0, 0.0], - up: [0.0, 1.0, 0.0], - vertical_fov: 40.0, - aperture: 0.0, - focus_distance: 10.0, - }, - background_color: [0.0, 0.0, 0.0], - objects: [], - priority_objects: [], -}; - -// Big light for smooth lighting of the entire scene -let light = { - kind: "Quad", - q: [-100.0, 80.0, -100.0], - u: [200.0, 0.0, 0.0], - v: [0.0, 0.0, 200.0], - material: { - kind: "DiffuseLight", - emit: { - kind: "SolidColor", - color: [3.0, 3.0, 3.0], - }, - }, -}; - -scene.objects.push(light); -scene.priority_objects.push(light); - -// Checkerboard ground -// The defaults should make this a unit square checkerboard -let ground = { - kind: "Quad", - q: [-10.0, 0.001, -10.0], - u: [20.0, 0.0, 0.0], - v: [0.0, 0.0, 20.0], - material: { - kind: "Lambertian", - albedo: { - kind: "SpatialChecker", - }, - }, -}; - -scene.objects.push(ground); - -let radius = 1.5; -let height = radius; -for (var y = -2; y <= 2; y += 1) { - for (var x = -2; x <= 2; x += 1) { - // Tint the color a bit based on coord - let color = [0.2 + 0.1 * x, 0.2 + 0.1 * y, 0.2 + 0.1 * height]; - // Default sphere - let sphere = { - kind: "Sphere", - // TODO: fix the camera setup, these coordinates are in weird order :| - center: [y * 3.0, radius * 1.0, x * 3.0], - radius: radius, - }; - // First row: Lambertian with checker - if (y == -2) { - sphere["material"] = { - kind: "Lambertian", - albedo: { - kind: "SurfaceChecker", - even: color, - odd: [color[0] / 2.0, color[1] / 2.0, color[2] / 2.0], - }, - }; - } - // Second row: Lambertian solid color - else if (y == -1) { - sphere["material"] = { - kind: "Lambertian", - albedo: { - kind: "SolidColor", - color, - }, - }; - } - // Third row: Metal - else if (y == 0) { - sphere["material"] = { - kind: "Metal", - albedo: { - kind: "SolidColor", - color, - }, - // Start with no fuzz, increase based on x. Dodge the negative index. - fuzz: 0.0 + 0.1 * (2 + x), - }; - } - // Fourth row: Dielectric - else if (y == 1) { - sphere["material"] = { - kind: "Dielectric", - // brighter color for the glass spheres - color: [color[0] + 0.5, color[1] + 0.5, color[2] + 0.5], - refractive_index: 1.5, - }; - } - // Fifth row: ConstantMedium - else if (y == 2) { - sphere = { - // TODO: this is a weird override because ConstantMedium is an object, not a material by its own - kind: "ConstantMedium", - boundary: { - ...sphere, - }, - texture: { - kind: "SolidColor", - color, - }, - // Start with high density, lower it - density: 1.0 - 0.2 * (2 + x), - }; - } - // Default back to Lambertian with color tinting - else { - sphere["material"] = { - kind: "Lambertian", - albedo: { - kind: "SolidColor", - color, - }, - }; - } - // Save the sphere to the objects list - scene.objects.push(sphere); - } -} - -let json = JSON.stringify(scene); -fs.writeFileSync(path.join(__dirname, "debug_scene.json"), json); diff --git a/scenes/debug_scene.json b/scenes/debug_scene.json deleted file mode 100644 index b284b60f..00000000 --- a/scenes/debug_scene.json +++ /dev/null @@ -1 +0,0 @@ -{"time_0":0,"time_1":1,"camera":{"look_from":[0.000001,30,0],"look_at":[0,0,0],"up":[0,1,0],"vertical_fov":40,"aperture":0,"focus_distance":10},"background_color":[0,0,0],"objects":[{"kind":"Quad","q":[-100,80,-100],"u":[200,0,0],"v":[0,0,200],"material":{"kind":"DiffuseLight","emit":{"kind":"SolidColor","color":[3,3,3]}}},{"kind":"Quad","q":[-10,0.001,-10],"u":[20,0,0],"v":[0,0,20],"material":{"kind":"Lambertian","albedo":{"kind":"SpatialChecker"}}},{"kind":"Sphere","center":[-6,1.5,-6],"radius":1.5,"material":{"kind":"Lambertian","albedo":{"kind":"SurfaceChecker","even":[0,0,0.35000000000000003],"odd":[0,0,0.17500000000000002]}}},{"kind":"Sphere","center":[-6,1.5,-3],"radius":1.5,"material":{"kind":"Lambertian","albedo":{"kind":"SurfaceChecker","even":[0.1,0,0.35000000000000003],"odd":[0.05,0,0.17500000000000002]}}},{"kind":"Sphere","center":[-6,1.5,0],"radius":1.5,"material":{"kind":"Lambertian","albedo":{"kind":"SurfaceChecker","even":[0.2,0,0.35000000000000003],"odd":[0.1,0,0.17500000000000002]}}},{"kind":"Sphere","center":[-6,1.5,3],"radius":1.5,"material":{"kind":"Lambertian","albedo":{"kind":"SurfaceChecker","even":[0.30000000000000004,0,0.35000000000000003],"odd":[0.15000000000000002,0,0.17500000000000002]}}},{"kind":"Sphere","center":[-6,1.5,6],"radius":1.5,"material":{"kind":"Lambertian","albedo":{"kind":"SurfaceChecker","even":[0.4,0,0.35000000000000003],"odd":[0.2,0,0.17500000000000002]}}},{"kind":"Sphere","center":[-3,1.5,-6],"radius":1.5,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0,0.1,0.35000000000000003]}}},{"kind":"Sphere","center":[-3,1.5,-3],"radius":1.5,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1,0.1,0.35000000000000003]}}},{"kind":"Sphere","center":[-3,1.5,0],"radius":1.5,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2,0.1,0.35000000000000003]}}},{"kind":"Sphere","center":[-3,1.5,3],"radius":1.5,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.30000000000000004,0.1,0.35000000000000003]}}},{"kind":"Sphere","center":[-3,1.5,6],"radius":1.5,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4,0.1,0.35000000000000003]}}},{"kind":"Sphere","center":[0,1.5,-6],"radius":1.5,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0,0.2,0.35000000000000003]},"fuzz":0}},{"kind":"Sphere","center":[0,1.5,-3],"radius":1.5,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.1,0.2,0.35000000000000003]},"fuzz":0.1}},{"kind":"Sphere","center":[0,1.5,0],"radius":1.5,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.2,0.2,0.35000000000000003]},"fuzz":0.2}},{"kind":"Sphere","center":[0,1.5,3],"radius":1.5,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.30000000000000004,0.2,0.35000000000000003]},"fuzz":0.30000000000000004}},{"kind":"Sphere","center":[0,1.5,6],"radius":1.5,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.4,0.2,0.35000000000000003]},"fuzz":0.4}},{"kind":"Sphere","center":[3,1.5,-6],"radius":1.5,"material":{"kind":"Dielectric","color":[0.5,0.8,0.8500000000000001],"refractive_index":1.5}},{"kind":"Sphere","center":[3,1.5,-3],"radius":1.5,"material":{"kind":"Dielectric","color":[0.6,0.8,0.8500000000000001],"refractive_index":1.5}},{"kind":"Sphere","center":[3,1.5,0],"radius":1.5,"material":{"kind":"Dielectric","color":[0.7,0.8,0.8500000000000001],"refractive_index":1.5}},{"kind":"Sphere","center":[3,1.5,3],"radius":1.5,"material":{"kind":"Dielectric","color":[0.8,0.8,0.8500000000000001],"refractive_index":1.5}},{"kind":"Sphere","center":[3,1.5,6],"radius":1.5,"material":{"kind":"Dielectric","color":[0.9,0.8,0.8500000000000001],"refractive_index":1.5}},{"kind":"ConstantMedium","boundary":{"kind":"Sphere","center":[6,1.5,-6],"radius":1.5},"texture":{"kind":"SolidColor","color":[0,0.4,0.35000000000000003]},"density":1},{"kind":"ConstantMedium","boundary":{"kind":"Sphere","center":[6,1.5,-3],"radius":1.5},"texture":{"kind":"SolidColor","color":[0.1,0.4,0.35000000000000003]},"density":0.8},{"kind":"ConstantMedium","boundary":{"kind":"Sphere","center":[6,1.5,0],"radius":1.5},"texture":{"kind":"SolidColor","color":[0.2,0.4,0.35000000000000003]},"density":0.6},{"kind":"ConstantMedium","boundary":{"kind":"Sphere","center":[6,1.5,3],"radius":1.5},"texture":{"kind":"SolidColor","color":[0.30000000000000004,0.4,0.35000000000000003]},"density":0.3999999999999999},{"kind":"ConstantMedium","boundary":{"kind":"Sphere","center":[6,1.5,6],"radius":1.5},"texture":{"kind":"SolidColor","color":[0.4,0.4,0.35000000000000003]},"density":0.19999999999999996}],"priority_objects":[{"kind":"Quad","q":[-100,80,-100],"u":[200,0,0],"v":[0,0,200],"material":{"kind":"DiffuseLight","emit":{"kind":"SolidColor","color":[3,3,3]}}}]} \ No newline at end of file diff --git a/scenes/dispersive.json b/scenes/dispersive.json index 37de7a4e..1109a25a 100644 --- a/scenes/dispersive.json +++ b/scenes/dispersive.json @@ -1,75 +1,59 @@ { "time_0": 0, "time_1": 1, + "background_color": [0, 0, 0], "camera": { - "look_from": [-600, 310, -400], - "look_at": [0, 310, 0], + "look_from": [-600, 280, -400], + "look_at": [0, 280, 0], "up": [0, 1, 0], "vertical_fov": 35, "aperture": 0, "focus_distance": 10 }, - "background_color": [0, 0, 0], "objects": [ { "kind": "Quad", - "q": [555, 0, 0], - "u": [0, 0, 555], - "v": [0, 555, 0], - "material": "grey wall", - "comment": "wall, left" + "comment": "floor", + "q": [-1000, 120, -1000], + "u": [10000, 0, 0], + "v": [0, 0, 10000], + "material": "floor material" }, { - "kind": "Quad", - "q": [113, 750, 127], - "u": [330, 0, 0], - "v": [0, 0, 305], - "material": "big lamp", - "comment": "big ceiling light" - }, - { - "kind": "Quad", - "q": [277, 554, 140], - "u": [10, 0, 0], - "v": [0, 0, 278], - "material": "narrow lamp", - "comment": "narrow ceiling light" + "kind": "Sphere", + "comment": "glass sphere", + "radius": 50, + "center": [0, 200, 250], + "priority": true, + "material": "Dense flint glass SF10" }, - { - "kind": "STL", - "center": [300, 350, 278], - "scale": 20, - "rotation": [0, 0, -30], - "path": "stl/prism.stl", - "material": "Dense flint glass SF10", - "comment": "triangular prism" - } - ], - "priority_objects": [ { "kind": "Quad", - "q": [113, 750, 127], + "q": [0, 750, 127], "u": [330, 0, 0], "v": [0, 0, 305], "material": "big lamp", - "comment": "big ceiling light" + "comment": "big ceiling light", + "priority": true }, { "kind": "Quad", - "q": [277, 554, 140], + "q": [410, 555, 0], "u": [10, 0, 0], - "v": [0, 0, 278], + "v": [0, 0, 300], "material": "narrow lamp", - "comment": "narrow ceiling light" + "comment": "narrow ceiling light", + "priority": true }, { "kind": "STL", - "center": [300, 350, 278], - "scale": 20, + "center": [400, 350, 150], + "scale": 25, "rotation": [0, 0, -30], "path": "stl/prism.stl", "material": "Dense flint glass SF10", - "comment": "triangular prism" + "comment": "triangular prism", + "priority": true } ], "materials": [ @@ -124,27 +108,18 @@ { "name": "big lamp", "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [2, 2, 2] - } + "emit": { "kind": "SolidColor", "color": [2, 2, 2] } }, { "name": "narrow lamp", "kind": "ConeLight", - "spread": 2.0, - "emit": { - "kind": "SolidColor", - "color": [25, 25, 25] - } + "spread": 2, + "emit": { "kind": "SolidColor", "color": [25, 25, 25] } }, { - "name": "grey wall", + "name": "floor material", "kind": "Lambertian", - "albedo": { - "kind": "SolidColor", - "color": [0.73, 0.73, 0.73] - } + "albedo": { "kind": "SolidColor", "color": [1, 1, 1] } } ] } diff --git a/scenes/gltf_scifi_helmet.json b/scenes/gltf_scifi_helmet.json index 2b531f85..737e6e2e 100644 --- a/scenes/gltf_scifi_helmet.json +++ b/scenes/gltf_scifi_helmet.json @@ -17,28 +17,19 @@ }, { "kind": "Sphere", + "priority": true, "center": [2.0, 14.0, 2.0], "radius": 12.0, - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [5.0, 5.0, 5.0] - } - } + "material": "lamp" } ], - "priority_objects": [ + "materials": [ { - "kind": "Sphere", - "center": [2.0, 14.0, 2.0], - "radius": 12.0, - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [5.0, 5.0, 5.0] - } + "name": "lamp", + "kind": "DiffuseLight", + "emit": { + "kind": "SolidColor", + "color": [5.0, 5.0, 5.0] } } ] diff --git a/scenes/gltf_water_bottle.json b/scenes/gltf_water_bottle.json index f8ad530f..0b71dec6 100644 --- a/scenes/gltf_water_bottle.json +++ b/scenes/gltf_water_bottle.json @@ -17,28 +17,19 @@ }, { "kind": "Sphere", + "priority": true, "center": [2.0, 14.0, 2.0], "radius": 12.0, - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [2.0, 2.0, 2.0] - } - } + "material": "lamp" } ], - "priority_objects": [ + "materials": [ { - "kind": "Sphere", - "center": [2.0, 14.0, 2.0], - "radius": 12.0, - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [2.0, 2.0, 2.0] - } + "name": "lamp", + "kind": "DiffuseLight", + "emit": { + "kind": "SolidColor", + "color": [2.0, 2.0, 2.0] } } ] diff --git a/scenes/grey.json b/scenes/grey.json index 167e2b55..512d950c 100644 --- a/scenes/grey.json +++ b/scenes/grey.json @@ -13,39 +13,31 @@ "objects": [ { "kind": "Quad", + "priority": true, "q": [-100, 80, -100], "u": [200, 0, 0], "v": [0, 0, 100], - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [2.5, 2.5, 2.5] - } - } + "material": "lamp" }, { "kind": "Sphere", "center": [0, 0, 0], "radius": 8, - "material": { - "kind": "Lambertian" - } + "material": "grey" } ], - "priority_objects": [ + "materials": [ { - "kind": "Quad", - "q": [-100, 80, -100], - "u": [200, 0, 0], - "v": [0, 0, 100], - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [2.5, 2.5, 2.5] - } + "name": "lamp", + "kind": "DiffuseLight", + "emit": { + "kind": "SolidColor", + "color": [2.5, 2.5, 2.5] } + }, + { + "name": "grey", + "kind": "Lambertian" } ] } diff --git a/scenes/one_weekend.js b/scenes/one_weekend.js index 6138aed4..70988f22 100644 --- a/scenes/one_weekend.js +++ b/scenes/one_weekend.js @@ -20,68 +20,81 @@ let scene = { }, background_color: [0.7, 0.7, 0.9], objects: [], - priority_objects: [], + materials: [], }; -let ground_texture = { +let ground_material = { + name: "ground material", kind: "Lambertian", albedo: { kind: "SolidColor", color: [0.5, 0.5, 0.5], }, }; +scene.materials.push(ground_material); let ground_sphere = { kind: "Sphere", center: [0.0, -1000.0, 0.0], radius: 1000.0, - material: ground_texture, + material: "ground material", }; scene.objects.push(ground_sphere); +let glass = { + name: "glass", + kind: "Dielectric", + refractive_index: 1.5, +}; +scene.materials.push(glass); + let glass_sphere = { kind: "Sphere", + priority: true, center: [0.0, 1.0, 0.0], radius: 1.0, - material: { - kind: "Dielectric", - refractive_index: 1.5, - }, + material: "glass", }; scene.objects.push(glass_sphere); -scene.priority_objects.push(glass_sphere); +let lambertian_sphere_material = { + name: "lambertian sphere material", + kind: "Lambertian", + albedo: { + kind: "SolidColor", + color: [0.4, 0.2, 0.1], + }, +}; +scene.materials.push(lambertian_sphere_material); let lambertian_sphere = { kind: "Sphere", center: [-4.0, 1.0, 0.0], radius: 1.0, - material: { - kind: "Lambertian", - albedo: { - kind: "SolidColor", - color: [0.4, 0.2, 0.1], - }, - }, + material: "lambertian sphere material", }; scene.objects.push(lambertian_sphere); +let metal_sphere_material = { + name: "metal sphere material", + kind: "Metal", + fuzz: 0.0, + albedo: { + kind: "SolidColor", + color: [0.7, 0.6, 0.5], + }, +}; +scene.materials.push(metal_sphere_material); let metal_sphere = { kind: "Sphere", center: [4.0, 1.0, 0.0], radius: 1.0, - material: { - kind: "Metal", - fuzz: 0.0, - albedo: { - kind: "SolidColor", - color: [0.7, 0.6, 0.5], - }, - }, + material: "metal sphere material", }; scene.objects.push(metal_sphere); for (let a = -11; a < 11; a++) { for (let b = -11; b < 11; b++) { + let name = `sphere material ${a}_${b}`; let choose_mat = random_float(0.0, 1.0); let center_0 = [ a + 0.9 * random_float(0.0, 1.0), @@ -96,20 +109,20 @@ for (let a = -11; a < 11; a++) { random_float(0.0, 1.0), random_float(0.0, 1.0), ]; - let texture = { - kind: "SolidColor", - color, - }; - let sphere_material = { + let material = { + name, kind: "Lambertian", - albedo: texture, + albedo: { + kind: "SolidColor", + color, + }, }; + scene.materials.push(material); let center_1 = [ center_0[0], center_0[1] + random_float(0.0, 0.5), center_0[2], ]; - let moving_sphere = { kind: "MovingSphere", center_0, @@ -117,7 +130,7 @@ for (let a = -11; a < 11; a++) { time_0, time_1, radius: 0.2, - material: sphere_material, + material: name, }; scene.objects.push(moving_sphere); } else if (choose_mat < 0.95) { @@ -127,34 +140,30 @@ for (let a = -11; a < 11; a++) { random_float(0.0, 1.0), random_float(0.0, 1.0), ]; - let texture = { - kind: "SolidColor", - color, - }; let fuzz = random_float(0.0, 0.5); - let sphere_material = { + let material = { + name, kind: "Metal", - albedo: texture, + albedo: { + kind: "SolidColor", + color, + }, fuzz, }; + scene.materials.push(material); let sphere = { kind: "Sphere", center: center_0, radius: 0.2, - material: sphere_material, + material: name, }; scene.objects.push(sphere); } else { - // glass - let sphere_material = { - kind: "Dielectric", - refractive_index: 1.5, - }; let sphere = { kind: "Sphere", center: center_0, radius: 0.2, - material: sphere_material, + material: "glass", }; scene.objects.push(sphere); } diff --git a/scenes/one_weekend.json b/scenes/one_weekend.json index 586af816..e9badc23 100644 --- a/scenes/one_weekend.json +++ b/scenes/one_weekend.json @@ -1 +1 @@ -{"time_0":0,"time_1":1,"camera":{"look_from":[13,2,3],"look_at":[0,0,0],"up":[0,1,0],"vertical_fov":25,"aperture":0,"focus_distance":10},"background_color":[0.7,0.7,0.9],"objects":[{"kind":"Sphere","center":[0,-1000,0],"radius":1000,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5,0.5,0.5]}}},{"kind":"Sphere","center":[0,1,0],"radius":1,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"Sphere","center":[-4,1,0],"radius":1,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4,0.2,0.1]}}},{"kind":"Sphere","center":[4,1,0],"radius":1,"material":{"kind":"Metal","fuzz":0,"albedo":{"kind":"SolidColor","color":[0.7,0.6,0.5]}}},{"kind":"MovingSphere","center_0":[-10.847290324303366,0.2,-10.154279811209804],"center_1":[-10.847290324303366,0.6936519005431021,-10.154279811209804],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.15325176569490662,0.38237520602669206,0.051457202041500505]}}},{"kind":"MovingSphere","center_0":[-10.798930845467774,0.2,-9.769308791828038],"center_1":[-10.798930845467774,0.47830008430417753,-9.769308791828038],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9271128875997907,0.5969521049858231,0.711485834627255]}}},{"kind":"MovingSphere","center_0":[-10.965434486034063,0.2,-8.560926245617594],"center_1":[-10.965434486034063,0.23817009836919573,-8.560926245617594],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.782948462932709,0.9290937601224678,0.009707350186356045]}}},{"kind":"MovingSphere","center_0":[-10.966381715566838,0.2,-7.491878503661353],"center_1":[-10.966381715566838,0.4209246938453524,-7.491878503661353],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.12027973300916006,0.7288840063165727,0.5213146364079728]}}},{"kind":"Sphere","center":[-10.389613637368935,0.2,-6.932337590495952],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.17336303868824166,0.7475387454036253,0.07432204495440375]},"fuzz":0.08542177264851292}},{"kind":"MovingSphere","center_0":[-10.91120712735151,0.2,-5.562925474165368],"center_1":[-10.91120712735151,0.45091402718741685,-5.562925474165368],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1032930013646105,0.3165318030726936,0.021964467548980515]}}},{"kind":"Sphere","center":[-10.299607876330995,0.2,-4.45565000980715],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[-10.386710911890477,0.2,-3.7947515474208036],"center_1":[-10.386710911890477,0.20107521242259035,-3.7947515474208036],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5191071112487533,0.30171870613543805,0.37306971398402355]}}},{"kind":"Sphere","center":[-10.111698926508616,0.2,-2.37079124543501],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7939530038660181,0.6264844955155766,0.4097496288680347]},"fuzz":0.049580622907194116}},{"kind":"MovingSphere","center_0":[-10.839127491613873,0.2,-1.4265910474701486],"center_1":[-10.839127491613873,0.6117440634990097,-1.4265910474701486],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.45515608525125906,0.8678200290130011,0.6439831667744227]}}},{"kind":"Sphere","center":[-10.577023098299874,0.2,-0.34599481712344593],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.26650268139005706,0.7786487608305512,0.9230943243668017]},"fuzz":0.14199360545271789}},{"kind":"Sphere","center":[-10.223144674230026,0.2,0.8245348506645028],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8259179466975548,0.9096076270716866,0.48976150472719127]},"fuzz":0.26644755104514606}},{"kind":"MovingSphere","center_0":[-10.579420372508256,0.2,1.7217046643340033],"center_1":[-10.579420372508256,0.2764701520550327,1.7217046643340033],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9858351083070094,0.9079055606766353,0.5526291845796873]}}},{"kind":"MovingSphere","center_0":[-10.313303980504168,0.2,2.4476957234249905],"center_1":[-10.313303980504168,0.28717967188682864,2.4476957234249905],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2073853654382256,0.2772727071796697,0.27332749500896014]}}},{"kind":"MovingSphere","center_0":[-10.58089601267851,0.2,3.42789796703158],"center_1":[-10.58089601267851,0.2087637983662633,3.42789796703158],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9223583799885531,0.7721761837677099,0.8849910251959308]}}},{"kind":"MovingSphere","center_0":[-10.779657070028495,0.2,4.005547661516546],"center_1":[-10.779657070028495,0.22075320918121194,4.005547661516546],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4627042158040311,0.6170095103231097,0.5231339253586105]}}},{"kind":"MovingSphere","center_0":[-10.333261828623295,0.2,5.411967920080833],"center_1":[-10.333261828623295,0.63891225828716,5.411967920080833],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7158057092303547,0.5151748964335494,0.6267650819758976]}}},{"kind":"MovingSphere","center_0":[-10.548998164946198,0.2,6.187434382994738],"center_1":[-10.548998164946198,0.45454986974818484,6.187434382994738],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4740806577128658,0.17245773979039836,0.5457573974517964]}}},{"kind":"Sphere","center":[-10.333437170261687,0.2,7.23593001466492],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.36128492792918765,0.7802933271296937,0.8534797736238999]},"fuzz":0.441091480937011}},{"kind":"Sphere","center":[-10.917566155954177,0.2,8.683187952206518],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.0962328675746098,0.05926058714489946,0.05796946276332271]},"fuzz":0.10589279043341915}},{"kind":"MovingSphere","center_0":[-10.156950077674958,0.2,9.067761709549112],"center_1":[-10.156950077674958,0.6622266566666477,9.067761709549112],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.18488750787210262,0.17089201122327569,0.6979695215222719]}}},{"kind":"MovingSphere","center_0":[-10.985385463988083,0.2,10.731781120010675],"center_1":[-10.985385463988083,0.4831770052006417,10.731781120010675],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3394748582089113,0.5319358179946123,0.8144635028654665]}}},{"kind":"MovingSphere","center_0":[-9.71343810817911,0.2,-10.289095822145574],"center_1":[-9.71343810817911,0.484070512331595,-10.289095822145574],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2759463624399592,0.9055216811868783,0.18202681090986728]}}},{"kind":"Sphere","center":[-9.239686801114063,0.2,-9.19582526292476],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.13676775990699186,0.9161721678522103,0.5881281341544318]},"fuzz":0.2109302934212668}},{"kind":"MovingSphere","center_0":[-9.48261583323208,0.2,-8.444067441839831],"center_1":[-9.48261583323208,0.5249040327036305,-8.444067441839831],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8103769731239849,0.28789640632504043,0.8013754244347688]}}},{"kind":"MovingSphere","center_0":[-9.758445739673999,0.2,-7.551433991729549],"center_1":[-9.758445739673999,0.4689531320294635,-7.551433991729549],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4118110324753459,0.5746489194714053,0.8147126635908313]}}},{"kind":"MovingSphere","center_0":[-9.978879406584213,0.2,-6.62386859212784],"center_1":[-9.978879406584213,0.599269938667931,-6.62386859212784],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8094590472837444,0.9665253547352575,0.23378765748770958]}}},{"kind":"MovingSphere","center_0":[-9.35707527682342,0.2,-5.976129944487555],"center_1":[-9.35707527682342,0.389457380139368,-5.976129944487555],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.26692997873702784,0.6223051388823044,0.6167122456141771]}}},{"kind":"MovingSphere","center_0":[-9.223139154546484,0.2,-4.310616530882644],"center_1":[-9.223139154546484,0.6612725457142299,-4.310616530882644],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3581410959617859,0.27849803536736095,0.5351949436117172]}}},{"kind":"Sphere","center":[-9.401038519322146,0.2,-3.7700057213836526],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.9318574693659574,0.4111617536476069,0.8158034491788073]},"fuzz":0.2683236712987299}},{"kind":"MovingSphere","center_0":[-9.236570244715383,0.2,-2.6669334931989543],"center_1":[-9.236570244715383,0.4075961484794021,-2.6669334931989543],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4332758083201158,0.47142795146209515,0.4945538532332894]}}},{"kind":"MovingSphere","center_0":[-9.529972846519335,0.2,-1.912276860861481],"center_1":[-9.529972846519335,0.5141246280106846,-1.912276860861481],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.44635104342496557,0.931625189625338,0.9473655739496973]}}},{"kind":"Sphere","center":[-9.423199109961823,0.2,-0.273255080729793],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.11783676806238441,0.03269849380736023,0.3218119461492883]},"fuzz":0.005978247430052264}},{"kind":"Sphere","center":[-9.705773825365176,0.2,0.03458619862394925],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.31265175828462466,0.033835091378543236,0.040884890986221833]},"fuzz":0.367508932704496}},{"kind":"Sphere","center":[-9.413849915168367,0.2,1.3796249591345822],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8558580979455799,0.47558662720739053,0.5118177094839391]},"fuzz":0.2984592546796858}},{"kind":"MovingSphere","center_0":[-9.158780140839395,0.2,2.6587259932558194],"center_1":[-9.158780140839395,0.6578304746055927,2.6587259932558194],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.49132074875191867,0.8635287413082984,0.9568462763649745]}}},{"kind":"MovingSphere","center_0":[-9.702866254858304,0.2,3.0285941579203453],"center_1":[-9.702866254858304,0.5883657308947319,3.0285941579203453],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.04497615580674519,0.9059522022978188,0.875730281812817]}}},{"kind":"MovingSphere","center_0":[-9.994940857337092,0.2,4.204442619963175],"center_1":[-9.994940857337092,0.5071055192150784,4.204442619963175],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5402394165764062,0.6648302200922551,0.5878531588294476]}}},{"kind":"MovingSphere","center_0":[-9.692684523315297,0.2,5.697164971686478],"center_1":[-9.692684523315297,0.23040097215373373,5.697164971686478],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6217002933909586,0.6440589416468359,0.02483108528669442]}}},{"kind":"MovingSphere","center_0":[-9.554934093783775,0.2,6.568772107730809],"center_1":[-9.554934093783775,0.3807688252119931,6.568772107730809],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.07685027131099709,0.9405632329514093,0.04759191688617137]}}},{"kind":"MovingSphere","center_0":[-9.90306708226431,0.2,7.610758381642773],"center_1":[-9.90306708226431,0.29403722208513855,7.610758381642773],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7452472489689852,0.2903030333760792,0.6992612218518306]}}},{"kind":"MovingSphere","center_0":[-9.875529362806754,0.2,8.77730991321569],"center_1":[-9.875529362806754,0.24038438654548927,8.77730991321569],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9443199707909342,0.9281522935425168,0.4152411773841844]}}},{"kind":"MovingSphere","center_0":[-9.4248969229311,0.2,9.164397423240988],"center_1":[-9.4248969229311,0.6027991358703906,9.164397423240988],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8367872663680087,0.964085823962868,0.13913059393215765]}}},{"kind":"MovingSphere","center_0":[-9.812638110366914,0.2,10.24662406730986],"center_1":[-9.812638110366914,0.2527988414709465,10.24662406730986],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.14613417816313823,0.9250293446259106,0.4009537319711143]}}},{"kind":"MovingSphere","center_0":[-8.681446484166111,0.2,-10.187717134748882],"center_1":[-8.681446484166111,0.6274322299220212,-10.187717134748882],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7857819147059777,0.984521606086094,0.9925005190089169]}}},{"kind":"MovingSphere","center_0":[-8.78956706217283,0.2,-9.547496267823472],"center_1":[-8.78956706217283,0.3104673180070972,-9.547496267823472],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5673413473705824,0.21396793765150357,0.0013373678887420581]}}},{"kind":"MovingSphere","center_0":[-8.527603390924698,0.2,-8.2128998974376],"center_1":[-8.527603390924698,0.3252366955312342,-8.2128998974376],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.35565074473615876,0.7073563570083934,0.8851732073897125]}}},{"kind":"MovingSphere","center_0":[-8.524456897280372,0.2,-7.241774333825011],"center_1":[-8.524456897280372,0.5215722787873398,-7.241774333825011],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.10447517517873428,0.8993243180026735,0.8366395433740828]}}},{"kind":"MovingSphere","center_0":[-8.138818086706411,0.2,-6.4945635550024585],"center_1":[-8.138818086706411,0.21167284267369763,-6.4945635550024585],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6198799486771103,0.5267555227870435,0.30725113616982713]}}},{"kind":"MovingSphere","center_0":[-8.663385859731436,0.2,-5.719234462901028],"center_1":[-8.663385859731436,0.6256076561862596,-5.719234462901028],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1865135728668632,0.8576084058439317,0.5873170357252908]}}},{"kind":"MovingSphere","center_0":[-8.374779719568355,0.2,-4.606337780148398],"center_1":[-8.374779719568355,0.4587196872342953,-4.606337780148398],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.10388812642256018,0.6746953548156194,0.23167199521819337]}}},{"kind":"Sphere","center":[-8.177830866761697,0.2,-3.3504497100004733],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.23701660973073047,0.5861760463452708,0.780325940522014]},"fuzz":0.09480258106946204}},{"kind":"MovingSphere","center_0":[-8.987259125376964,0.2,-2.566784859712547],"center_1":[-8.987259125376964,0.5677141367327188,-2.566784859712547],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.050470287121485935,0.3477239826863099,0.6046473752465984]}}},{"kind":"Sphere","center":[-8.653833439811777,0.2,-1.8955125546527434],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5219151947305485,0.009167623932084812,0.9615868860532384]},"fuzz":0.2795187522271445}},{"kind":"MovingSphere","center_0":[-8.574264520866768,0.2,-0.46197287063851433],"center_1":[-8.574264520866768,0.4574927097804817,-0.46197287063851433],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.11302935937398195,0.341069915664008,0.10915140076823482]}}},{"kind":"MovingSphere","center_0":[-8.275231253042564,0.2,0.39290196422030743],"center_1":[-8.275231253042564,0.538407182053922,0.39290196422030743],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.23325974970127827,0.8175265901838149,0.1237419793951462]}}},{"kind":"MovingSphere","center_0":[-8.33213682124383,0.2,1.104233184482045],"center_1":[-8.33213682124383,0.36764216667036936,1.104233184482045],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6859539820664602,0.9503647393865633,0.44472934912541406]}}},{"kind":"MovingSphere","center_0":[-8.36233436196938,0.2,2.407635541367198],"center_1":[-8.36233436196938,0.6347588807557907,2.407635541367198],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.91215719984252,0.07722837184939402,0.4184632978395604]}}},{"kind":"MovingSphere","center_0":[-8.100162304566597,0.2,3.728651921775205],"center_1":[-8.100162304566597,0.627052777243893,3.728651921775205],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7051864285931462,0.5222916595831992,0.94140276396527]}}},{"kind":"MovingSphere","center_0":[-8.734121821982509,0.2,4.887462615268289],"center_1":[-8.734121821982509,0.20949979511529465,4.887462615268289],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8461202901465532,0.34800296923448815,0.25240120341359384]}}},{"kind":"MovingSphere","center_0":[-8.91706777580178,0.2,5.470666619913616],"center_1":[-8.91706777580178,0.3080313601638686,5.470666619913616],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8716394069299334,0.3956250248095614,0.1438110613762329]}}},{"kind":"MovingSphere","center_0":[-8.607786161142215,0.2,6.541697362677041],"center_1":[-8.607786161142215,0.24461466978854202,6.541697362677041],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8356417568465273,0.4931307070734996,0.6065060126472992]}}},{"kind":"MovingSphere","center_0":[-8.76808251732371,0.2,7.514896593703321],"center_1":[-8.76808251732371,0.22109165680643855,7.514896593703321],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.034751994258835905,0.521326199126285,0.7794604646530696]}}},{"kind":"MovingSphere","center_0":[-8.842077309206047,0.2,8.888288281668332],"center_1":[-8.842077309206047,0.27133857455992766,8.888288281668332],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6006574973078029,0.29973783056665515,0.7678258502555215]}}},{"kind":"MovingSphere","center_0":[-8.579396107076466,0.2,9.317175837317887],"center_1":[-8.579396107076466,0.6475705887513072,9.317175837317887],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.16530192261113652,0.8055923518107351,0.3526975439680389]}}},{"kind":"MovingSphere","center_0":[-8.721172694271704,0.2,10.006558241900317],"center_1":[-8.721172694271704,0.6977721860878767,10.006558241900317],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.15876858225819235,0.9567025739577397,0.46159096546357303]}}},{"kind":"MovingSphere","center_0":[-7.461461124044851,0.2,-10.127126558767298],"center_1":[-7.461461124044851,0.26565618383443507,-10.127126558767298],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7782363474212828,0.1346537010003792,0.9755280152868684]}}},{"kind":"MovingSphere","center_0":[-7.903592752863988,0.2,-9.235186517833732],"center_1":[-7.903592752863988,0.4335771853537435,-9.235186517833732],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.10916660403400869,0.5159869521913452,0.09251767783028675]}}},{"kind":"MovingSphere","center_0":[-7.143889489114687,0.2,-8.636393912472213],"center_1":[-7.143889489114687,0.23826758311529866,-8.636393912472213],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.30517159167925434,0.09474410917476739,0.539741976394362]}}},{"kind":"MovingSphere","center_0":[-7.747708734703979,0.2,-7.103370043448755],"center_1":[-7.747708734703979,0.628708466361986,-7.103370043448755],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8673325063428996,0.752490387123973,0.5677445605343752]}}},{"kind":"MovingSphere","center_0":[-7.916574076205797,0.2,-6.239173500430626],"center_1":[-7.916574076205797,0.3928877639484513,-6.239173500430626],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.26036543280584645,0.004463983660107029,0.8049896422602312]}}},{"kind":"MovingSphere","center_0":[-7.337537114375861,0.2,-5.517732976855723],"center_1":[-7.337537114375861,0.271344325372794,-5.517732976855723],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6536817038817904,0.8090281344017505,0.7641672696547319]}}},{"kind":"MovingSphere","center_0":[-7.6265799474398825,0.2,-4.342025834571816],"center_1":[-7.6265799474398825,0.4936005800571483,-4.342025834571816],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6074723352731939,0.6096932574868312,0.3248434461409506]}}},{"kind":"Sphere","center":[-7.864658577163178,0.2,-3.384554023618913],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.3253266635455625,0.9483406611288463,0.7423114575857568]},"fuzz":0.0034998179583517475}},{"kind":"MovingSphere","center_0":[-7.97767096345731,0.2,-2.266603224512862],"center_1":[-7.97767096345731,0.37370086519071305,-2.266603224512862],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6630682346787753,0.08723431055526243,0.6327518364822986]}}},{"kind":"MovingSphere","center_0":[-7.840255345693042,0.2,-1.6408460811430923],"center_1":[-7.840255345693042,0.3296031213273369,-1.6408460811430923],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6547835975785152,0.4840941104827725,0.7118205327056042]}}},{"kind":"MovingSphere","center_0":[-7.677644801933858,0.2,-0.7568871290604393],"center_1":[-7.677644801933858,0.34304495775924154,-0.7568871290604393],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9459104448048985,0.20549601484326985,0.35463566913182865]}}},{"kind":"MovingSphere","center_0":[-7.704303896299482,0.2,0.08870334861191552],"center_1":[-7.704303896299482,0.45960218508007206,0.08870334861191552],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.24965470414048818,0.2556844240296743,0.16988698666750568]}}},{"kind":"Sphere","center":[-7.124343995066021,0.2,1.6707348312916963],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"Sphere","center":[-7.162006605820394,0.2,2.432942685640146],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.18458839981821273,0.32167208485398535,0.9927098170049993]},"fuzz":0.00517229336994629}},{"kind":"MovingSphere","center_0":[-7.198612348748524,0.2,3.6275103069061383],"center_1":[-7.198612348748524,0.554631893368539,3.6275103069061383],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6823608871231417,0.7852389616158595,0.6121504284083716]}}},{"kind":"MovingSphere","center_0":[-7.618089832510401,0.2,4.122435581316705],"center_1":[-7.618089832510401,0.3363069370029526,4.122435581316705],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5774873335116668,0.35127102253673836,0.9395133530365958]}}},{"kind":"MovingSphere","center_0":[-7.210197697526659,0.2,5.2410425079336695],"center_1":[-7.210197697526659,0.5933892833120302,5.2410425079336695],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9454558297270426,0.9009926692786328,0.8344912235901196]}}},{"kind":"MovingSphere","center_0":[-7.689279828956254,0.2,6.802184428161206],"center_1":[-7.689279828956254,0.40790619615288476,6.802184428161206],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7734023682836977,0.7668446666935476,0.5278572470778891]}}},{"kind":"MovingSphere","center_0":[-7.648762725762143,0.2,7.529385374574186],"center_1":[-7.648762725762143,0.3547721159372959,7.529385374574186],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6790626461944229,0.7125666798847199,0.7543369357626795]}}},{"kind":"Sphere","center":[-7.204308280565873,0.2,8.531086023239448],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"Sphere","center":[-7.314166158030785,0.2,9.441409348573297],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.892234725389629,0.8961880787025231,0.8432869719768898]},"fuzz":0.03305859174010228}},{"kind":"Sphere","center":[-7.836970414851377,0.2,10.272883279409731],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.9182181995453955,0.21245271755747042,0.8103665197401471]},"fuzz":0.001372574280112393}},{"kind":"MovingSphere","center_0":[-6.862088920273962,0.2,-10.8402041523648],"center_1":[-6.862088920273962,0.6251265381953843,-10.8402041523648],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7987320153918984,0.7687694010167827,0.8723418525886331]}}},{"kind":"MovingSphere","center_0":[-6.574883802995194,0.2,-9.733300048809271],"center_1":[-6.574883802995194,0.40519124995355144,-9.733300048809271],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4239315240240846,0.7344649561551884,0.245890013149493]}}},{"kind":"MovingSphere","center_0":[-6.568198643883418,0.2,-8.432929455476481],"center_1":[-6.568198643883418,0.5323049966543323,-8.432929455476481],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5179539169308554,0.7939906039220299,0.8341766122446865]}}},{"kind":"MovingSphere","center_0":[-6.256869809443045,0.2,-7.5458550961393716],"center_1":[-6.256869809443045,0.3698880518244743,-7.5458550961393716],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4053886186072846,0.5935136606470868,0.2953227440251833]}}},{"kind":"MovingSphere","center_0":[-6.512578474693917,0.2,-6.666466029370775],"center_1":[-6.512578474693917,0.6502385467804088,-6.666466029370775],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8427971618841938,0.9435996378620612,0.3079879770929155]}}},{"kind":"MovingSphere","center_0":[-6.9834417461611435,0.2,-5.9425820046084965],"center_1":[-6.9834417461611435,0.25679813730741213,-5.9425820046084965],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.37686067288686065,0.9622823626066783,0.4588816032498573]}}},{"kind":"MovingSphere","center_0":[-6.330318695899364,0.2,-4.31462135706537],"center_1":[-6.330318695899364,0.3470845602768304,-4.31462135706537],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8094021918874337,0.7056655554938314,0.5616832917307881]}}},{"kind":"MovingSphere","center_0":[-6.92362759317464,0.2,-3.4308271441435725],"center_1":[-6.92362759317464,0.6424994860952755,-3.4308271441435725],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.03202554417324177,0.8067172054768741,0.34882624446454624]}}},{"kind":"MovingSphere","center_0":[-6.891582008738061,0.2,-2.9222753631869915],"center_1":[-6.891582008738061,0.2615224004320503,-2.9222753631869915],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.19160678691763144,0.20619345636728714,0.696857299482899]}}},{"kind":"MovingSphere","center_0":[-6.445356598714882,0.2,-1.1757395994553077],"center_1":[-6.445356598714882,0.38989401017844844,-1.1757395994553077],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.11592261963602968,0.9801229299936882,0.2841330394017947]}}},{"kind":"MovingSphere","center_0":[-6.974957896975885,0.2,-0.5132758672298647],"center_1":[-6.974957896975885,0.6810515354803792,-0.5132758672298647],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.13375731525596346,0.2660709527893761,0.21394816827830088]}}},{"kind":"MovingSphere","center_0":[-6.645141744380544,0.2,0.2310312272432128],"center_1":[-6.645141744380544,0.36646314410681563,0.2310312272432128],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.41926697550995073,0.9663487512162763,0.7410538352602263]}}},{"kind":"MovingSphere","center_0":[-6.994061476608168,0.2,1.4747934679823445],"center_1":[-6.994061476608168,0.2985934774736823,1.4747934679823445],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.09872753917352295,0.7949376505750154,0.9087361369269806]}}},{"kind":"Sphere","center":[-6.575189736470596,0.2,2.2392201962468854],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8897374715216781,0.9382161311224548,0.7392544368430372]},"fuzz":0.16812909278455157}},{"kind":"MovingSphere","center_0":[-6.718889813134149,0.2,3.0616337234112883],"center_1":[-6.718889813134149,0.2613021599182394,3.0616337234112883],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4948356792039281,0.3930739218008299,0.9366326284559388]}}},{"kind":"Sphere","center":[-6.615704169955528,0.2,4.5356473565387665],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.28510007166025875,0.6058709974072645,0.6847113951505062]},"fuzz":0.45865719731082}},{"kind":"Sphere","center":[-6.895410355297609,0.2,5.463211627906936],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.0016083261377768387,0.5384351063945472,0.6254534915251035]},"fuzz":0.17904987614668644}},{"kind":"MovingSphere","center_0":[-6.79117273668031,0.2,6.895588362209038],"center_1":[-6.79117273668031,0.5531453314335824,6.895588362209038],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8991445470431063,0.4930834056179796,0.29607889981616053]}}},{"kind":"MovingSphere","center_0":[-6.4565274119537905,0.2,7.877019359165966],"center_1":[-6.4565274119537905,0.5065153511723315,7.877019359165966],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.055479100823955685,0.28923877948284216,0.5933478865152468]}}},{"kind":"MovingSphere","center_0":[-6.698349604351394,0.2,8.708677406268723],"center_1":[-6.698349604351394,0.3888659516295209,8.708677406268723],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.43825315516874785,0.35204838389927695,0.9033071757616717]}}},{"kind":"Sphere","center":[-6.640895140213863,0.2,9.04239119356939],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7882595825371264,0.2315847866938543,0.42185409063787027]},"fuzz":0.009074767137321249}},{"kind":"Sphere","center":[-6.965784037037804,0.2,10.22951766070327],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.6264258514532144,0.6061013314111021,0.9087104591692927]},"fuzz":0.2769192453126028}},{"kind":"MovingSphere","center_0":[-5.399179372793302,0.2,-10.188650946967703],"center_1":[-5.399179372793302,0.4423263192239227,-10.188650946967703],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4089875391755462,0.8531669769775712,0.6503595209940269]}}},{"kind":"Sphere","center":[-5.503350148634177,0.2,-9.474639605938982],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.2807500788779709,0.5947801964411878,0.567059672768679]},"fuzz":0.1397764270601103}},{"kind":"MovingSphere","center_0":[-5.894634741940584,0.2,-8.317383716984686],"center_1":[-5.894634741940584,0.23700097638619472,-8.317383716984686],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.29280597956646637,0.43171750304919465,0.13689101090679956]}}},{"kind":"MovingSphere","center_0":[-5.720518501043185,0.2,-7.228057063208636],"center_1":[-5.720518501043185,0.5037629594063142,-7.228057063208636],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.07277339990309062,0.7255209016324509,0.9155216520977005]}}},{"kind":"Sphere","center":[-5.19685022171852,0.2,-6.2898117981760775],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[-5.2541181119928595,0.2,-5.241154785969864],"center_1":[-5.2541181119928595,0.36634909029845025,-5.241154785969864],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7195660750246624,0.8818431562619482,0.16562955993069495]}}},{"kind":"MovingSphere","center_0":[-5.287883691222312,0.2,-4.850475062612102],"center_1":[-5.287883691222312,0.5345338243120883,-4.850475062612102],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.45779890809461565,0.1808391147952393,0.749278532649766]}}},{"kind":"Sphere","center":[-5.455808246875792,0.2,-3.1260543788443735],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"Sphere","center":[-5.609566023048936,0.2,-2.379251631578171],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[-5.421473477841217,0.2,-1.106744864708884],"center_1":[-5.421473477841217,0.3459783044809139,-1.106744864708884],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5728802421139425,0.8369261897103115,0.091168084993825]}}},{"kind":"MovingSphere","center_0":[-5.733132592256077,0.2,-0.2984194113106664],"center_1":[-5.733132592256077,0.5100427029234877,-0.2984194113106664],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.41529344311827865,0.4753629958396779,0.509392567688882]}}},{"kind":"MovingSphere","center_0":[-5.123641741317397,0.2,0.26328297301660347],"center_1":[-5.123641741317397,0.4642005241056851,0.26328297301660347],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7735268425319113,0.8145912124004884,0.08329117478262393]}}},{"kind":"MovingSphere","center_0":[-5.18903888931011,0.2,1.807923646385577],"center_1":[-5.18903888931011,0.413512054462383,1.807923646385577],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5511566251910995,0.8382178238878784,0.378721384095394]}}},{"kind":"MovingSphere","center_0":[-5.6656250385820215,0.2,2.376302928214031],"center_1":[-5.6656250385820215,0.5389671577221158,2.376302928214031],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.805049416613371,0.41755614428731613,0.9989624448627461]}}},{"kind":"MovingSphere","center_0":[-5.677521459255109,0.2,3.5328735932857382],"center_1":[-5.677521459255109,0.6386418328074637,3.5328735932857382],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7344232127867274,0.800665843958946,0.917924714286317]}}},{"kind":"Sphere","center":[-5.944382786452832,0.2,4.101316689165509],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.34201148364504474,0.0913434458158977,0.9698854352574329]},"fuzz":0.26720645462693915}},{"kind":"MovingSphere","center_0":[-5.722366383250048,0.2,5.638721500366671],"center_1":[-5.722366383250048,0.5837295280379229,5.638721500366671],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8967328214909838,0.5823983872072085,0.4846034108314241]}}},{"kind":"MovingSphere","center_0":[-5.645399911646094,0.2,6.392653491125246],"center_1":[-5.645399911646094,0.6212807623442136,6.392653491125246],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5412243017358376,0.11653577951200478,0.5735605980961602]}}},{"kind":"Sphere","center":[-5.968259055293531,0.2,7.488278160856334],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5226905374644799,0.8834043652943162,0.3896088620324325]},"fuzz":0.05871216197955753}},{"kind":"Sphere","center":[-5.748518257436076,0.2,8.7886761240795],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.10920831382227414,0.823639889005523,0.6823949104255664]},"fuzz":0.09717460294961489}},{"kind":"MovingSphere","center_0":[-5.4370008254861615,0.2,9.32498275140529],"center_1":[-5.4370008254861615,0.49546061632570954,9.32498275140529],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9863600734801912,0.543184062460238,0.5316083429411569]}}},{"kind":"MovingSphere","center_0":[-5.85297694152814,0.2,10.188504533492267],"center_1":[-5.85297694152814,0.5882965642690909,10.188504533492267],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.017125254117485555,0.6111159733178264,0.05498940777726857]}}},{"kind":"MovingSphere","center_0":[-4.422333908771497,0.2,-10.848688880225811],"center_1":[-4.422333908771497,0.2829574829287041,-10.848688880225811],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.21508404255569524,0.35473648031904936,0.9239824420466647]}}},{"kind":"Sphere","center":[-4.924704517801775,0.2,-9.470921666005191],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[-4.212566997137464,0.2,-8.320410218323367],"center_1":[-4.212566997137464,0.24472303419249358,-8.320410218323367],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8222931382277519,0.1459526077721136,0.19733903060909763]}}},{"kind":"MovingSphere","center_0":[-4.653145100071213,0.2,-7.136064969039397],"center_1":[-4.653145100071213,0.2414852752091397,-7.136064969039397],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8032544081629052,0.35825590959840126,0.13578733281975985]}}},{"kind":"MovingSphere","center_0":[-4.624903358056805,0.2,-6.121609382428205],"center_1":[-4.624903358056805,0.545958033955799,-6.121609382428205],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6913350986157529,0.10337976521641457,0.011574823632222841]}}},{"kind":"MovingSphere","center_0":[-4.880755117737139,0.2,-5.952096669226434],"center_1":[-4.880755117737139,0.6213946882580152,-5.952096669226434],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8878862629781477,0.5279607073256101,0.8913564087328065]}}},{"kind":"MovingSphere","center_0":[-4.712602586890629,0.2,-4.337123007960965],"center_1":[-4.712602586890629,0.5086414733224234,-4.337123007960965],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.21896968280735352,0.9216132682882259,0.8748078402490806]}}},{"kind":"MovingSphere","center_0":[-4.596181005532949,0.2,-3.284210735038798],"center_1":[-4.596181005532949,0.5233607898398829,-3.284210735038798],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.05949899111160528,0.45390149232842236,0.0022980550403941535]}}},{"kind":"MovingSphere","center_0":[-4.9195220603621115,0.2,-2.6378972765802082],"center_1":[-4.9195220603621115,0.33174259695446423,-2.6378972765802082],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6772007780500797,0.2273757390642972,0.4694591682755218]}}},{"kind":"MovingSphere","center_0":[-4.67906689550792,0.2,-1.9980486892575264],"center_1":[-4.67906689550792,0.30131091389469383,-1.9980486892575264],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.16254346927583696,0.7010061267780134,0.5832196546925741]}}},{"kind":"MovingSphere","center_0":[-4.709912181784854,0.2,-0.1436126448509052],"center_1":[-4.709912181784854,0.689952319029135,-0.1436126448509052],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.47583208642712194,0.7755786537965099,0.8691864469422828]}}},{"kind":"MovingSphere","center_0":[-4.737540257691162,0.2,0.8668450094153827],"center_1":[-4.737540257691162,0.26572515684287784,0.8668450094153827],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2080996676529392,0.7987712694659361,0.792737627305355]}}},{"kind":"MovingSphere","center_0":[-4.226550121509407,0.2,1.2355241312856757],"center_1":[-4.226550121509407,0.32720127196802967,1.2355241312856757],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6292388736824095,0.8776124730954082,0.5882447767834207]}}},{"kind":"MovingSphere","center_0":[-4.889923809391683,0.2,2.5967676463522125],"center_1":[-4.889923809391683,0.5812602734302079,2.5967676463522125],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.06465120915603806,0.7609048467006978,0.9545237003432083]}}},{"kind":"Sphere","center":[-4.130663465455944,0.2,3.591451188462222],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[-4.518108943241588,0.2,4.380810911863589],"center_1":[-4.518108943241588,0.36699177909939934,4.380810911863589],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9253617570048016,0.17675837034226127,0.3664708866088138]}}},{"kind":"Sphere","center":[-4.720229625682212,0.2,5.886153610154385],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"Sphere","center":[-4.7526329158551786,0.2,6.456610267425175],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5621385911178121,0.5842611322208087,0.17498269243848208]},"fuzz":0.15945743978745297}},{"kind":"MovingSphere","center_0":[-4.5975458888039915,0.2,7.328936912979296],"center_1":[-4.5975458888039915,0.6286978532985097,7.328936912979296],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7613335759659927,0.7088556485276347,0.08498923588320406]}}},{"kind":"Sphere","center":[-4.321836925066885,0.2,8.730088057866032],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.714005322488332,0.8377907335017496,0.10486417748354171]},"fuzz":0.23298780525089946}},{"kind":"MovingSphere","center_0":[-4.684375812477024,0.2,9.026778728431609],"center_1":[-4.684375812477024,0.23116838943545265,9.026778728431609],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6961568502838422,0.9698332910993916,0.2303547191132269]}}},{"kind":"MovingSphere","center_0":[-4.741568887672157,0.2,10.702191942209923],"center_1":[-4.741568887672157,0.36078514793780564,10.702191942209923],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9419273729946429,0.5294540753029535,0.9913837366675862]}}},{"kind":"MovingSphere","center_0":[-3.2278674256006834,0.2,-10.893803247191878],"center_1":[-3.2278674256006834,0.45776094752211177,-10.893803247191878],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3267940982429811,0.019270096649063095,0.5658651327731232]}}},{"kind":"Sphere","center":[-3.7109754330174476,0.2,-9.111163216329684],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8686475086629408,0.2798682922326903,0.4143578949911779]},"fuzz":0.28848241223548343}},{"kind":"MovingSphere","center_0":[-3.474177003695604,0.2,-8.673222799793052],"center_1":[-3.474177003695604,0.66334226194362,-8.673222799793052],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2412717289442754,0.06393604792338503,0.7832380408066799]}}},{"kind":"Sphere","center":[-3.5034126532789296,0.2,-7.197728483929948],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7865107805322666,0.8605722119773924,0.9681439263786007]},"fuzz":0.44571595257982566}},{"kind":"MovingSphere","center_0":[-3.6326722037546832,0.2,-6.250302085298053],"center_1":[-3.6326722037546832,0.39310700354337164,-6.250302085298053],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7597361203423108,0.7453211143366629,0.2062239984378158]}}},{"kind":"MovingSphere","center_0":[-3.1698029855515486,0.2,-5.448425926901921],"center_1":[-3.1698029855515486,0.4732664641677942,-5.448425926901921],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.18596534400816012,0.8609803240222229,0.16090987378858368]}}},{"kind":"MovingSphere","center_0":[-3.699071338200763,0.2,-4.21324273378557],"center_1":[-3.699071338200763,0.5829230601959492,-4.21324273378557],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8244263349856809,0.734749438154022,0.6112654335409775]}}},{"kind":"MovingSphere","center_0":[-3.821677280978147,0.2,-3.3514700463435583],"center_1":[-3.821677280978147,0.5391634645050016,-3.3514700463435583],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6456479055504609,0.12464738024805277,0.024447886687315457]}}},{"kind":"MovingSphere","center_0":[-3.4843800373027953,0.2,-2.5743099644354706],"center_1":[-3.4843800373027953,0.4756325971056656,-2.5743099644354706],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7875070730913489,0.26672219707758904,0.34032629186218966]}}},{"kind":"MovingSphere","center_0":[-3.1194524152757013,0.2,-1.4062427713054775],"center_1":[-3.1194524152757013,0.6782144822937155,-1.4062427713054775],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6616159657934364,0.9689167708589823,0.6454862302270603]}}},{"kind":"Sphere","center":[-3.6376086272282353,0.2,-0.32600452602516594],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[-3.811582227236753,0.2,0.6527601872937355],"center_1":[-3.811582227236753,0.24050383820649596,0.6527601872937355],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.38012217613012833,0.32260030995285716,0.884228088672192]}}},{"kind":"MovingSphere","center_0":[-3.932887825843414,0.2,1.32321460938154],"center_1":[-3.932887825843414,0.466863200198067,1.32321460938154],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1860883717207018,0.7480246774831047,0.7286305624770029]}}},{"kind":"MovingSphere","center_0":[-3.591492032108998,0.2,2.692734279305734],"center_1":[-3.591492032108998,0.6287221441369886,2.692734279305734],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.332213388847421,0.33109805209493515,0.544440095620911]}}},{"kind":"MovingSphere","center_0":[-3.259131655228554,0.2,3.541240728736677],"center_1":[-3.259131655228554,0.38886628249318117,3.541240728736677],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.13759641743344142,0.35161052680824434,0.3127460671434916]}}},{"kind":"MovingSphere","center_0":[-3.584513800512269,0.2,4.381860422949478],"center_1":[-3.584513800512269,0.20555055455685362,4.381860422949478],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6685759656087684,0.5533167468960885,0.3329181017978473]}}},{"kind":"MovingSphere","center_0":[-3.620037792032084,0.2,5.437617456307936],"center_1":[-3.620037792032084,0.3278204153353686,5.437617456307936],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.495613694683259,0.20272328774344972,0.770326558589886]}}},{"kind":"MovingSphere","center_0":[-3.5654019268484842,0.2,6.104163587037076],"center_1":[-3.5654019268484842,0.4315256565651851,6.104163587037076],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.20512787380348385,0.4589208794504136,0.9406885733629025]}}},{"kind":"MovingSphere","center_0":[-3.58159158616299,0.2,7.790979417402828],"center_1":[-3.58159158616299,0.6607539949540915,7.790979417402828],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3449830783907504,0.34163271628667524,0.9659249747113434]}}},{"kind":"MovingSphere","center_0":[-3.7412905451435607,0.2,8.677788511449416],"center_1":[-3.7412905451435607,0.57966230707882,8.677788511449416],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.24361905036537923,0.951661473705298,0.7253155057913385]}}},{"kind":"Sphere","center":[-3.227571773136067,0.2,9.775732288535183],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[-3.92462092856926,0.2,10.54214907134444],"center_1":[-3.92462092856926,0.5566691068198906,10.54214907134444],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.44519174040518505,0.29381938324110335,0.3471994857202889]}}},{"kind":"MovingSphere","center_0":[-2.8087169809263477,0.2,-10.61674825394726],"center_1":[-2.8087169809263477,0.5454201134949204,-10.61674825394726],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4582864261340678,0.23278643366598173,0.3187623170086431]}}},{"kind":"MovingSphere","center_0":[-2.524462681885134,0.2,-9.511801244662687],"center_1":[-2.524462681885134,0.4218899838859265,-9.511801244662687],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6822738215403763,0.07798686228138729,0.3220955055058592]}}},{"kind":"MovingSphere","center_0":[-2.6447253217880116,0.2,-8.501487637227084],"center_1":[-2.6447253217880116,0.5252924726133865,-8.501487637227084],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4927139984796054,0.18252633387689698,0.6082230560353086]}}},{"kind":"MovingSphere","center_0":[-2.3030657034907116,0.2,-7.129134245188282],"center_1":[-2.3030657034907116,0.31620159347090754,-7.129134245188282],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.45034256705918696,0.517510652783945,0.518402987866067]}}},{"kind":"MovingSphere","center_0":[-2.594200350458146,0.2,-6.866583373239568],"center_1":[-2.594200350458146,0.27049474168101145,-6.866583373239568],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1852236361965831,0.6985935831012917,0.08129698478018366]}}},{"kind":"MovingSphere","center_0":[-2.6439150809745113,0.2,-5.607089821521775],"center_1":[-2.6439150809745113,0.6159314118578938,-5.607089821521775],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8059348784630789,0.22715790369729527,0.8031693966663835]}}},{"kind":"MovingSphere","center_0":[-2.1171755205575677,0.2,-4.407173768145261],"center_1":[-2.1171755205575677,0.6874087824025477,-4.407173768145261],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9275600606518029,0.04360464913285145,0.6195066537669633]}}},{"kind":"MovingSphere","center_0":[-2.4229165251506037,0.2,-3.809644688302424],"center_1":[-2.4229165251506037,0.6358647543376887,-3.809644688302424],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5900173210748576,0.04472680872510071,0.9571365609281179]}}},{"kind":"Sphere","center":[-2.766705271979861,0.2,-2.7572912053779284],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.006610158315570658,0.6762014523321536,0.6084152718175473]},"fuzz":0.44558893586390735}},{"kind":"MovingSphere","center_0":[-2.9397897269281796,0.2,-1.4675855770417399],"center_1":[-2.9397897269281796,0.3373894050060397,-1.4675855770417399],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.33362195790891946,0.9017967156928872,0.10099621602901254]}}},{"kind":"MovingSphere","center_0":[-2.635543099019956,0.2,-0.9322829319166049],"center_1":[-2.635543099019956,0.4862144958192482,-0.9322829319166049],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2976023223134281,0.4891591231954364,0.5180062900948725]}}},{"kind":"MovingSphere","center_0":[-2.3435535856558665,0.2,0.49220059703308466],"center_1":[-2.3435535856558665,0.4662874093728148,0.49220059703308466],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9407433003300041,0.36985065158444086,0.7048329236381279]}}},{"kind":"MovingSphere","center_0":[-2.5215563466075275,0.2,1.0226687023636551],"center_1":[-2.5215563466075275,0.28604232044994987,1.0226687023636551],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.44592666453880137,0.11679570830341479,0.6622959106505508]}}},{"kind":"MovingSphere","center_0":[-2.3696373699233426,0.2,2.4273500239741526],"center_1":[-2.3696373699233426,0.2392308442681878,2.4273500239741526],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3028128777049708,0.9526691175588928,0.7454298737922864]}}},{"kind":"MovingSphere","center_0":[-2.278390774725231,0.2,3.2725347715558692],"center_1":[-2.278390774725231,0.6589144367989825,3.2725347715558692],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5587745978537046,0.8651811033238992,0.5868637283779394]}}},{"kind":"MovingSphere","center_0":[-2.3311320319736955,0.2,4.593729718904903],"center_1":[-2.3311320319736955,0.34123072958606576,4.593729718904903],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8420593446104936,0.7192185853740343,0.5178664825458852]}}},{"kind":"MovingSphere","center_0":[-2.1925454818076453,0.2,5.784142625440792],"center_1":[-2.1925454818076453,0.6962619610450844,5.784142625440792],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.15716970833243527,0.35563751134888055,0.7263574352364186]}}},{"kind":"Sphere","center":[-2.9427882623860957,0.2,6.604119125905799],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.2426328088875369,0.7766375928663505,0.0555614190919731]},"fuzz":0.2444444126006442}},{"kind":"MovingSphere","center_0":[-2.2760514342365985,0.2,7.6308964896061395],"center_1":[-2.2760514342365985,0.4163730692891589,7.6308964896061395],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7611134928888781,0.9201696637249648,0.23848188867369635]}}},{"kind":"Sphere","center":[-2.102504494328799,0.2,8.789587391286629],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"Sphere","center":[-2.614367517464136,0.2,9.459865930245575],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.07774281343160272,0.3271337461625923,0.4855228942230967]},"fuzz":0.4062003418924641}},{"kind":"Sphere","center":[-2.791168023338004,0.2,10.81016940701326],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5655351047509247,0.3469830967506897,0.17266832485361094]},"fuzz":0.39328192121693406}},{"kind":"MovingSphere","center_0":[-1.934131086119689,0.2,-10.228118092237422],"center_1":[-1.934131086119689,0.29681517721010825,-10.228118092237422],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7712315378555457,0.8917727445567536,0.9266023394039198]}}},{"kind":"Sphere","center":[-1.7951024134077982,0.2,-9.277852229775723],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.3943311664398086,0.6055320737061982,0.32246395083033796]},"fuzz":0.041879645775688035}},{"kind":"Sphere","center":[-1.617988786141259,0.2,-8.56247871079472],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.236049434504501,0.8462963815403453,0.1663819320150326]},"fuzz":0.08592199388970567}},{"kind":"MovingSphere","center_0":[-1.475210759987153,0.2,-7.936807045080096],"center_1":[-1.475210759987153,0.5878863370981238,-7.936807045080096],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.05417150695941486,0.42279427503591127,0.46392716054435246]}}},{"kind":"MovingSphere","center_0":[-1.2145021982927724,0.2,-6.222201850320598],"center_1":[-1.2145021982927724,0.6738142825483948,-6.222201850320598],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6436011374766393,0.6489178984807342,0.8570061743824908]}}},{"kind":"MovingSphere","center_0":[-1.575817230046363,0.2,-5.994954653203798],"center_1":[-1.575817230046363,0.3979667227289629,-5.994954653203798],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1951612570287975,0.10046317110867564,0.04390205605316044]}}},{"kind":"MovingSphere","center_0":[-1.7853302228318322,0.2,-4.897151325565476],"center_1":[-1.7853302228318322,0.514414401595034,-4.897151325565476],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4205749388277997,0.09962456646325801,0.9268732813317966]}}},{"kind":"MovingSphere","center_0":[-1.1901714892140096,0.2,-3.2392895057543143],"center_1":[-1.1901714892140096,0.5243679074236673,-3.2392895057543143],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.03286221172562653,0.9342378671913811,0.2323056292871981]}}},{"kind":"MovingSphere","center_0":[-1.2735548736008644,0.2,-2.9244988310291715],"center_1":[-1.2735548736008644,0.6274956017372155,-2.9244988310291715],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8018237457726132,0.040657856656937996,0.8600688106412531]}}},{"kind":"MovingSphere","center_0":[-1.2381586271101113,0.2,-1.39812193158135],"center_1":[-1.2381586271101113,0.2758310405018322,-1.39812193158135],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6584851569836496,0.5121682289689258,0.10626914386272679]}}},{"kind":"MovingSphere","center_0":[-1.2046966307574007,0.2,-0.42160962634652666],"center_1":[-1.2046966307574007,0.4889046909949086,-0.42160962634652666],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3024319465351808,0.5371615143561301,0.488581624807082]}}},{"kind":"MovingSphere","center_0":[-1.806600720451917,0.2,0.3035392819251234],"center_1":[-1.806600720451917,0.4007274381132772,0.3035392819251234],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9022975599675662,0.1953806293601601,0.7611472709730287]}}},{"kind":"MovingSphere","center_0":[-1.8233892763286101,0.2,1.4175416571736112],"center_1":[-1.8233892763286101,0.325003060128446,1.4175416571736112],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9005403083028725,0.4835404062264257,0.42553614903434167]}}},{"kind":"Sphere","center":[-1.8018296411516204,0.2,2.630742309871552],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.6746359055462541,0.02472079989392295,0.5419538171804794]},"fuzz":0.49886038608701977}},{"kind":"Sphere","center":[-1.2005955067856324,0.2,3.401448090078158],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[-1.6067703199280456,0.2,4.054060804934403],"center_1":[-1.6067703199280456,0.41573964004901404,4.054060804934403],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9461340394617359,0.6833581121858385,0.2927785023184688]}}},{"kind":"MovingSphere","center_0":[-1.717100198832675,0.2,5.140769090188474],"center_1":[-1.717100198832675,0.5180637915990627,5.140769090188474],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2137534985284626,0.09518230284291307,0.32984977708165575]}}},{"kind":"MovingSphere","center_0":[-1.6435241688693556,0.2,6.494457372511674],"center_1":[-1.6435241688693556,0.5986265778344861,6.494457372511674],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4885272480621956,0.7057233178627917,0.2956455359624095]}}},{"kind":"MovingSphere","center_0":[-1.53542677725199,0.2,7.179237622099553],"center_1":[-1.53542677725199,0.30123722632586075,7.179237622099553],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.35035454455295145,0.3880658187318249,0.5028147372958629]}}},{"kind":"MovingSphere","center_0":[-1.7058076912197444,0.2,8.332660370793027],"center_1":[-1.7058076912197444,0.4979781949577636,8.332660370793027],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.35056130055384194,0.2966325640771532,0.46045366345574124]}}},{"kind":"MovingSphere","center_0":[-1.177077212643038,0.2,9.074477408737417],"center_1":[-1.177077212643038,0.5028572771342037,9.074477408737417],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.21866605094361846,0.2415990974047395,0.3219756299221501]}}},{"kind":"Sphere","center":[-1.4580411175937862,0.2,10.507424151687314],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.6261300641186291,0.9053280166644633,0.5002822613382742]},"fuzz":0.34058623241485886}},{"kind":"MovingSphere","center_0":[-0.687800852706526,0.2,-10.162771339578024],"center_1":[-0.687800852706526,0.356959271507911,-10.162771339578024],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.46276494889591135,0.724758760005703,0.4384066759467189]}}},{"kind":"MovingSphere","center_0":[-0.4181564245880649,0.2,-9.58440629485348],"center_1":[-0.4181564245880649,0.3392952399258286,-9.58440629485348],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4239937957547748,0.912493342136059,0.9890268408406431]}}},{"kind":"MovingSphere","center_0":[-0.12484887822360657,0.2,-8.30471733257201],"center_1":[-0.12484887822360657,0.3933599674372517,-8.30471733257201],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.30426483638835045,0.6868210024903829,0.23700712556412018]}}},{"kind":"MovingSphere","center_0":[-0.7417258930556787,0.2,-7.596304775322965],"center_1":[-0.7417258930556787,0.6970321963566097,-7.596304775322965],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3407032995501935,0.4970932429095489,0.02080716805788585]}}},{"kind":"MovingSphere","center_0":[-0.6569731102603407,0.2,-6.249664103238212],"center_1":[-0.6569731102603407,0.3710020076884752,-6.249664103238212],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6141108469050371,0.7079546439475966,0.4849234019224664]}}},{"kind":"MovingSphere","center_0":[-0.7222172154029254,0.2,-5.813206636049634],"center_1":[-0.7222172154029254,0.4982221579022624,-5.813206636049634],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3662327713740692,0.23734621151017277,0.1692483771189115]}}},{"kind":"MovingSphere","center_0":[-0.8847459401074247,0.2,-4.523521696164153],"center_1":[-0.8847459401074247,0.3521397975594504,-4.523521696164153],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7893368514800541,0.20721071612576858,0.049551600454252887]}}},{"kind":"Sphere","center":[-0.6229944993616442,0.2,-3.346285796021612],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.4770224880503231,0.5958260723351574,0.9997947352909953]},"fuzz":0.32960115739460094}},{"kind":"MovingSphere","center_0":[-0.9756282052648205,0.2,-2.284000079891733],"center_1":[-0.9756282052648205,0.37616727996610727,-2.284000079891733],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9912774788736853,0.36751024819548883,0.5242264447199361]}}},{"kind":"MovingSphere","center_0":[-0.8083925498799241,0.2,-1.90304826870128],"center_1":[-0.8083925498799241,0.3216713947425958,-1.90304826870128],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.28400318587929085,0.4965303150148963,0.015871191267786022]}}},{"kind":"MovingSphere","center_0":[-0.47199868680369783,0.2,-0.11015289298995634],"center_1":[-0.47199868680369783,0.6329668965599888,-0.11015289298995634],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.11804824557302696,0.5351778763102,0.43879770088143943]}}},{"kind":"MovingSphere","center_0":[-0.9882820840024308,0.2,0.24009123331860519],"center_1":[-0.9882820840024308,0.3452255146249858,0.24009123331860519],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8671251064595793,0.03234893920540571,0.5694786629080415]}}},{"kind":"MovingSphere","center_0":[-0.799602297287361,0.2,1.601118348458326],"center_1":[-0.799602297287361,0.5167846997370615,1.601118348458326],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5107466062701902,0.0706600221647189,0.894917185330192]}}},{"kind":"MovingSphere","center_0":[-0.18864310801139583,0.2,2.1938852809849907],"center_1":[-0.18864310801139583,0.4153955696503551,2.1938852809849907],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2074714773112738,0.08276034476395044,0.5165683795036293]}}},{"kind":"MovingSphere","center_0":[-0.1207555553486841,0.2,3.030949831018934],"center_1":[-0.1207555553486841,0.5991723665566409,3.030949831018934],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.05700874156437652,0.8157188699249063,0.12257608825830424]}}},{"kind":"MovingSphere","center_0":[-0.7673508550347719,0.2,4.606901322427658],"center_1":[-0.7673508550347719,0.40156172320836375,4.606901322427658],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.12988386294031917,0.672864214345676,0.3525028038950271]}}},{"kind":"Sphere","center":[-0.19923383298478614,0.2,5.873796525551851],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.48563532862952563,0.7840495465466826,0.9318068448617298]},"fuzz":0.21189899981576443}},{"kind":"Sphere","center":[-0.5345860831113878,0.2,6.7478704315989795],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[-0.5928925294125382,0.2,7.1871497693530415],"center_1":[-0.5928925294125382,0.3607364268446011,7.1871497693530415],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8517120615553291,0.8112672719241256,0.36501661354721926]}}},{"kind":"MovingSphere","center_0":[-0.6966023337555504,0.2,8.275285964973024],"center_1":[-0.6966023337555504,0.29519820213352516,8.275285964973024],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9243626541611132,0.37037765805133227,0.6352777559438827]}}},{"kind":"MovingSphere","center_0":[-0.9004517302054232,0.2,9.877368683259713],"center_1":[-0.9004517302054232,0.6129268260312999,9.877368683259713],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4529116853129578,0.02595800756426092,0.3466210579121647]}}},{"kind":"MovingSphere","center_0":[-0.9271713364553836,0.2,10.08110137580488],"center_1":[-0.9271713364553836,0.5765120915283479,10.08110137580488],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8913361912277478,0.05446410123504575,0.38523787784157393]}}},{"kind":"MovingSphere","center_0":[0.1607494721629443,0.2,-10.739199038278278],"center_1":[0.1607494721629443,0.35709000205311997,-10.739199038278278],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.43395913043122536,0.161628967314007,0.6106875958527136]}}},{"kind":"MovingSphere","center_0":[0.004387535305106405,0.2,-9.68130799754291],"center_1":[0.004387535305106405,0.42129486381580133,-9.68130799754291],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.19878559255946793,0.9585418240879324,0.2459031312946669]}}},{"kind":"MovingSphere","center_0":[0.7868210766426817,0.2,-8.1910208238643],"center_1":[0.7868210766426817,0.5280704571368593,-8.1910208238643],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3830980489732758,0.4243219982285611,0.15416540660509126]}}},{"kind":"MovingSphere","center_0":[0.3620917209908397,0.2,-7.687728798981998],"center_1":[0.3620917209908397,0.3047741255317676,-7.687728798981998],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8895294506009979,0.5651447976849757,0.9909143285304578]}}},{"kind":"MovingSphere","center_0":[0.17230726484429643,0.2,-6.108998293089739],"center_1":[0.17230726484429643,0.31823331934231885,-6.108998293089739],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.012155867849344526,0.38862712544693223,0.6881564633413373]}}},{"kind":"MovingSphere","center_0":[0.6342075681175827,0.2,-5.460145636230519],"center_1":[0.6342075681175827,0.2809521184387234,-5.460145636230519],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6393993563339144,0.32415108795042813,0.33870537945972656]}}},{"kind":"MovingSphere","center_0":[0.4572837178853126,0.2,-4.850004525086653],"center_1":[0.4572837178853126,0.49757657205219613,-4.850004525086653],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.11353227014492417,0.5456322115291214,0.4958515056908561]}}},{"kind":"MovingSphere","center_0":[0.036680717959613654,0.2,-3.889275130729609],"center_1":[0.036680717959613654,0.36032201464040653,-3.889275130729609],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2911187855487982,0.34047031533786387,0.08021653124670824]}}},{"kind":"Sphere","center":[0.32970613422734113,0.2,-2.135587629639779],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.10244497008056896,0.015604486760962377,0.26621715625822784]},"fuzz":0.3408095784605979}},{"kind":"MovingSphere","center_0":[0.5041402505055926,0.2,-1.3450744428190355],"center_1":[0.5041402505055926,0.36525289175000625,-1.3450744428190355],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9865094170229227,0.38419498717736467,0.26324759316961677]}}},{"kind":"MovingSphere","center_0":[0.20122051781506453,0.2,-0.8831340758674128],"center_1":[0.20122051781506453,0.6065985102771354,-0.8831340758674128],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9595160398810039,0.887142564876864,0.23059227210071165]}}},{"kind":"MovingSphere","center_0":[0.12590384565579546,0.2,0.8430494985346116],"center_1":[0.12590384565579546,0.2606347427002406,0.8430494985346116],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.33979733049710226,0.42469904829573313,0.37238411841357366]}}},{"kind":"Sphere","center":[0.8495948662376648,0.2,1.0903805852911093],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"Sphere","center":[0.08361248428769055,0.2,2.623930793345679],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.4473765758704382,0.26689607569864116,0.874024618919071]},"fuzz":0.1975414153923466}},{"kind":"MovingSphere","center_0":[0.8777888793752237,0.2,3.367120098767827],"center_1":[0.8777888793752237,0.687471707365521,3.367120098767827],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7132779543086845,0.2352323396152971,0.8962642475100469]}}},{"kind":"MovingSphere","center_0":[0.007784563877368633,0.2,4.253347820075266],"center_1":[0.007784563877368633,0.2965423799292794,4.253347820075266],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6366191994743509,0.7214221145371447,0.8348427787098835]}}},{"kind":"MovingSphere","center_0":[0.3227836046854952,0.2,5.428338269495152],"center_1":[0.3227836046854952,0.49746427053104475,5.428338269495152],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.862174152719763,0.6187864816916793,0.3420004943959818]}}},{"kind":"MovingSphere","center_0":[0.5990779365747899,0.2,6.239579070048959],"center_1":[0.5990779365747899,0.44222550576153713,6.239579070048959],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4233134398749139,0.5928594766854742,0.2900627487580816]}}},{"kind":"MovingSphere","center_0":[0.11101367436514438,0.2,7.1168799592567655],"center_1":[0.11101367436514438,0.5759139339459218,7.1168799592567655],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.20518815990747852,0.27202574168534155,0.7567823755526413]}}},{"kind":"MovingSphere","center_0":[0.18937354120720606,0.2,8.515475728207157],"center_1":[0.18937354120720606,0.4136632478707282,8.515475728207157],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7658129200827792,0.9181117702299331,0.9515738322503446]}}},{"kind":"Sphere","center":[0.787034186391462,0.2,9.479610692505144],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"Sphere","center":[0.510169024288817,0.2,10.012481015846742],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.6824412625969112,0.07101628141918526,0.6503633385947258]},"fuzz":0.0630478607706535}},{"kind":"Sphere","center":[1.11796557449859,0.2,-10.289522400017542],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.22445497798446135,0.47886699901932706,0.8181805101166935]},"fuzz":0.3946712245099675}},{"kind":"Sphere","center":[1.121475764405927,0.2,-9.819614451663192],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.3334731183070425,0.9867697481785949,0.0781755138915805]},"fuzz":0.44817197646718687}},{"kind":"MovingSphere","center_0":[1.1452846877721399,0.2,-8.916891806141805],"center_1":[1.1452846877721399,0.3636508632403072,-8.916891806141805],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9651320920719757,0.7614791552788964,0.44015994914822154]}}},{"kind":"Sphere","center":[1.5938154533392992,0.2,-7.835703612240866],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.14851613358499516,0.08096481674247635,0.16868783233805162]},"fuzz":0.24133475218431943}},{"kind":"MovingSphere","center_0":[1.6113472844448218,0.2,-6.776335315690869],"center_1":[1.6113472844448218,0.503900289808898,-6.776335315690869],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.11586935065114279,0.7236961850201797,0.9341695661575278]}}},{"kind":"MovingSphere","center_0":[1.8247003917006883,0.2,-5.254437032127554],"center_1":[1.8247003917006883,0.4127463667237022,-5.254437032127554],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.20414078737014996,0.1467287269203772,0.9612839109107276]}}},{"kind":"Sphere","center":[1.0472157499087698,0.2,-4.610259829686716],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.018913436400147754,0.18253186563717416,0.7840522391968159]},"fuzz":0.40885408021215164}},{"kind":"MovingSphere","center_0":[1.6937139924364375,0.2,-3.5547480854936904],"center_1":[1.6937139924364375,0.4583914356624728,-3.5547480854936904],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.24376422426575806,0.2603728782395942,0.16919748092210662]}}},{"kind":"Sphere","center":[1.788074264403534,0.2,-2.561141205312328],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.30352018089314603,0.9487683491418322,0.7680285553449213]},"fuzz":0.062421331540762126}},{"kind":"MovingSphere","center_0":[1.1612844709595438,0.2,-1.819165995747082],"center_1":[1.1612844709595438,0.36499295897772616,-1.819165995747082],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5534820050224751,0.008980004385742424,0.8313627667522145]}}},{"kind":"MovingSphere","center_0":[1.648898310882104,0.2,-0.15692495658105832],"center_1":[1.648898310882104,0.463128851827788,-0.15692495658105832],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5050754351257274,0.7189913795111842,0.6700903860771181]}}},{"kind":"MovingSphere","center_0":[1.1625634227346557,0.2,0.004826841424227135],"center_1":[1.1625634227346557,0.4742975046604469,0.004826841424227135],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8351680015611953,0.31495231585397465,0.6531437795366208]}}},{"kind":"MovingSphere","center_0":[1.2890351126205408,0.2,1.8585228537280127],"center_1":[1.2890351126205408,0.5851970540301394,1.8585228537280127],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.18292075807206376,0.3837291863094585,0.5413795441709901]}}},{"kind":"MovingSphere","center_0":[1.5049646139672723,0.2,2.706043280540246],"center_1":[1.5049646139672723,0.2931764318075151,2.706043280540246],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.08358148582076685,0.9109392410648995,0.8509607489943858]}}},{"kind":"MovingSphere","center_0":[1.6192373574994248,0.2,3.709264833866962],"center_1":[1.6192373574994248,0.6618232727709945,3.709264833866962],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.05490034426047319,0.18863319976802062,0.06706311526911035]}}},{"kind":"MovingSphere","center_0":[1.567976533245039,0.2,4.5144469931263425],"center_1":[1.567976533245039,0.21440951082365906,4.5144469931263425],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.07055272247371702,0.5601390671187931,0.9442288190226411]}}},{"kind":"Sphere","center":[1.1658359184082618,0.2,5.641459564439418],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.9832834465894331,0.2502342526616057,0.7669507860584013]},"fuzz":0.21873026612281576}},{"kind":"Sphere","center":[1.3875031307914554,0.2,6.316521129243395],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[1.1665185472544448,0.2,7.531114784687432],"center_1":[1.1665185472544448,0.6696404961611324,7.531114784687432],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9311836167131218,0.29885127672092016,0.7151931626526642]}}},{"kind":"MovingSphere","center_0":[1.464837264666452,0.2,8.074204245275439],"center_1":[1.464837264666452,0.31329078186575404,8.074204245275439],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4477021562631378,0.974996163565395,0.1585267351778299]}}},{"kind":"MovingSphere","center_0":[1.7633798363769686,0.2,9.069842791971475],"center_1":[1.7633798363769686,0.5927985623153662,9.069842791971475],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.38972242606348306,0.1483681601864213,0.749644157402394]}}},{"kind":"MovingSphere","center_0":[1.5355796574353768,0.2,10.177509533047985],"center_1":[1.5355796574353768,0.5807873037379123,10.177509533047985],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4415684766728798,0.3844775115617822,0.47196679362496163]}}},{"kind":"MovingSphere","center_0":[2.7266247523848515,0.2,-10.263838498585969],"center_1":[2.7266247523848515,0.5296724773527934,-10.263838498585969],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2050398791760104,0.5375406055335008,0.4913626611970858]}}},{"kind":"MovingSphere","center_0":[2.162414680484238,0.2,-9.82176945703238],"center_1":[2.162414680484238,0.6478243816689857,-9.82176945703238],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9405537751897031,0.17210971492291893,0.6595570389755814]}}},{"kind":"MovingSphere","center_0":[2.2484853711823853,0.2,-8.566800596144132],"center_1":[2.2484853711823853,0.6173537293444147,-8.566800596144132],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5384786968627004,0.09993731018795304,0.3999022199194928]}}},{"kind":"MovingSphere","center_0":[2.0959678017071846,0.2,-7.391967165501786],"center_1":[2.0959678017071846,0.5321400240126755,-7.391967165501786],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7293360294028097,0.8859327978173854,0.6408941729027193]}}},{"kind":"MovingSphere","center_0":[2.043177982412896,0.2,-6.911983819068145],"center_1":[2.043177982412896,0.2647924377035668,-6.911983819068145],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5854083898527929,0.3532368944607527,0.7645039614399669]}}},{"kind":"MovingSphere","center_0":[2.138204390652063,0.2,-5.931465967479735],"center_1":[2.138204390652063,0.6442480714777825,-5.931465967479735],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6393173446914866,0.9902783992411699,0.7684387688366858]}}},{"kind":"MovingSphere","center_0":[2.514173151816674,0.2,-4.2790003237886785],"center_1":[2.514173151816674,0.5249608225121627,-4.2790003237886785],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.09865740224786124,0.8757468705964357,0.6854601307045611]}}},{"kind":"MovingSphere","center_0":[2.1394015242488513,0.2,-3.9468169388734435],"center_1":[2.1394015242488513,0.6882054300799108,-3.9468169388734435],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.16111445507087718,0.17405236259356394,0.1507038041690585]}}},{"kind":"Sphere","center":[2.4617171255514037,0.2,-2.846288573943741],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[2.4560490463187516,0.2,-1.8354843263476845],"center_1":[2.4560490463187516,0.3955289382323846,-1.8354843263476845],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.15284437328825118,0.38053076365229765,0.24351817002330756]}}},{"kind":"Sphere","center":[2.2469969020746245,0.2,-0.9261316897122398],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.799822404751797,0.048195103920387394,0.6166749434953713]},"fuzz":0.08806691985202708}},{"kind":"MovingSphere","center_0":[2.6422940768916723,0.2,0.36211645336677495],"center_1":[2.6422940768916723,0.3035309159942427,0.36211645336677495],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9331907328870568,0.6668583319158969,0.08551959028058742]}}},{"kind":"MovingSphere","center_0":[2.8445452531613524,0.2,1.8314610379848353],"center_1":[2.8445452531613524,0.6669330164078537,1.8314610379848353],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4576771750918667,0.9976659299795041,0.010045711357193898]}}},{"kind":"MovingSphere","center_0":[2.6054213021559303,0.2,2.0197831567010263],"center_1":[2.6054213021559303,0.36843140671110747,2.0197831567010263],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.26934956637294327,0.03345433332436576,0.2885357168147311]}}},{"kind":"MovingSphere","center_0":[2.2160202259645416,0.2,3.0712624524999703],"center_1":[2.2160202259645416,0.20181600144724948,3.0712624524999703],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3697277864291588,0.11795012132376748,0.42206635168106965]}}},{"kind":"MovingSphere","center_0":[2.2158773003235646,0.2,4.188351632013017],"center_1":[2.2158773003235646,0.31534860284515726,4.188351632013017],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.36934689733866355,0.3357678944776954,0.008327846110925963]}}},{"kind":"MovingSphere","center_0":[2.211512329027662,0.2,5.353461673704338],"center_1":[2.211512329027662,0.5298331302508346,5.353461673704338],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.25223113232917704,0.2776136859498717,0.8318081886735236]}}},{"kind":"MovingSphere","center_0":[2.7311549463869795,0.2,6.07674869698904],"center_1":[2.7311549463869795,0.49092940289163595,6.07674869698904],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6683868696976882,0.21750528057236673,0.8028551718210721]}}},{"kind":"MovingSphere","center_0":[2.0017063531137294,0.2,7.64094426024746],"center_1":[2.0017063531137294,0.5262270592582456,7.64094426024746],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8317637903424051,0.2975393750637141,0.24110539513034457]}}},{"kind":"MovingSphere","center_0":[2.2335944172729167,0.2,8.342612934149615],"center_1":[2.2335944172729167,0.6706210971944138,8.342612934149615],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3806460213228786,0.5913735140967851,0.6672451928146346]}}},{"kind":"MovingSphere","center_0":[2.8552797943362265,0.2,9.327407580553363],"center_1":[2.8552797943362265,0.41383354268472555,9.327407580553363],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9999012135073488,0.27060412225284525,0.6274994733327763]}}},{"kind":"MovingSphere","center_0":[2.5242347437042687,0.2,10.587893678179212],"center_1":[2.5242347437042687,0.4886126293489587,10.587893678179212],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9867497453219527,0.41224029015942,0.586086989894649]}}},{"kind":"MovingSphere","center_0":[3.5259283065993823,0.2,-10.708977976000194],"center_1":[3.5259283065993823,0.6533966495539867,-10.708977976000194],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9399601481821116,0.16560429707888447,0.28011985004140993]}}},{"kind":"MovingSphere","center_0":[3.006829272953179,0.2,-9.754865433757848],"center_1":[3.006829272953179,0.5016799819178055,-9.754865433757848],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3414473622730674,0.9420357812095339,0.3258856484557602]}}},{"kind":"MovingSphere","center_0":[3.3270046714087766,0.2,-8.51810999582749],"center_1":[3.3270046714087766,0.6090454174019115,-8.51810999582749],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.30491275811665175,0.26168638741621475,0.756868696395044]}}},{"kind":"MovingSphere","center_0":[3.45073441276532,0.2,-7.3114972050864075],"center_1":[3.45073441276532,0.27478734353120543,-7.3114972050864075],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9385039450784127,0.1723141817094882,0.37807282646107865]}}},{"kind":"MovingSphere","center_0":[3.8186505683109395,0.2,-6.9566437306338225],"center_1":[3.8186505683109395,0.49042198988064384,-6.9566437306338225],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1676698692123182,0.8480169771624038,0.22348782923254062]}}},{"kind":"MovingSphere","center_0":[3.4937772276561088,0.2,-5.549961456132143],"center_1":[3.4937772276561088,0.23442428008481447,-5.549961456132143],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8658283733964791,0.5691187139997165,0.08286456443889723]}}},{"kind":"MovingSphere","center_0":[3.397596277991906,0.2,-4.252180044518823],"center_1":[3.397596277991906,0.5098894884340015,-4.252180044518823],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9398569265406547,0.6833220174353569,0.8221039231885903]}}},{"kind":"Sphere","center":[3.2038365455505016,0.2,-3.8551038532279684],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.04493726571107848,0.38919904878386613,0.8570822120128117]},"fuzz":0.33878076582892047}},{"kind":"MovingSphere","center_0":[3.347476681244315,0.2,-2.8925133858860663],"center_1":[3.347476681244315,0.5095780693751226,-2.8925133858860663],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.37261213509038527,0.5172924723520578,0.22428093962083762]}}},{"kind":"MovingSphere","center_0":[3.8968033440416354,0.2,-1.5233638301716972],"center_1":[3.8968033440416354,0.532624874829053,-1.5233638301716972],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.309861447588476,0.13788269998009617,0.8368515643023982]}}},{"kind":"MovingSphere","center_0":[3.4675674012650917,0.2,-0.5250124194929985],"center_1":[3.4675674012650917,0.4528567632037202,-0.5250124194929985],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5119926337888538,0.8930961939832445,0.9272430590062739]}}},{"kind":"Sphere","center":[3.8522060956917707,0.2,0.08576450462339717],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"Sphere","center":[3.1878743393795133,0.2,1.661606057102523],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.3245134178199751,0.8028747004766836,0.4083920671079353]},"fuzz":0.477855403365963}},{"kind":"MovingSphere","center_0":[3.4045993909053474,0.2,2.3506850088121127],"center_1":[3.4045993909053474,0.3050197715170759,2.3506850088121127],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.22357835337330578,0.2283173057064225,0.6043355034339304]}}},{"kind":"MovingSphere","center_0":[3.401316991265534,0.2,3.5697588017604667],"center_1":[3.401316991265534,0.2706172337319031,3.5697588017604667],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6384617627004585,0.9338080801183002,0.3681674088514846]}}},{"kind":"MovingSphere","center_0":[3.6400755831126195,0.2,4.662560698734136],"center_1":[3.6400755831126195,0.5792545513060141,4.662560698734136],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9005099445949436,0.008379619955837025,0.2763558188995068]}}},{"kind":"MovingSphere","center_0":[3.3967191130299916,0.2,5.096264908565558],"center_1":[3.3967191130299916,0.47829434141715393,5.096264908565558],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.16038301713540837,0.6477111092525218,0.4243310543207184]}}},{"kind":"MovingSphere","center_0":[3.1455828845025477,0.2,6.367744503302232],"center_1":[3.1455828845025477,0.577821149700233,6.367744503302232],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7507199653707357,0.719341285795829,0.44098616062122953]}}},{"kind":"MovingSphere","center_0":[3.5504210810301293,0.2,7.885609134823925],"center_1":[3.5504210810301293,0.4568798603009859,7.885609134823925],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.017243669867192946,0.4296563353846703,0.03330127944670336]}}},{"kind":"MovingSphere","center_0":[3.589787781910704,0.2,8.5400521190913],"center_1":[3.589787781910704,0.3466355527350868,8.5400521190913],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.23700559276418587,0.5000137263882034,0.611307993914014]}}},{"kind":"MovingSphere","center_0":[3.8023652129495984,0.2,9.365795045627227],"center_1":[3.8023652129495984,0.6302693596855065,9.365795045627227],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.17909522444730186,0.7755722419215889,0.9007304970964167]}}},{"kind":"Sphere","center":[3.607076116928749,0.2,10.188322017213734],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[4.108500255736141,0.2,-10.967903874405472],"center_1":[4.108500255736141,0.6331601830433586,-10.967903874405472],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.895951622457761,0.7998718175662027,0.8949371336566312]}}},{"kind":"MovingSphere","center_0":[4.651853175975282,0.2,-9.20127272548692],"center_1":[4.651853175975282,0.38492426717413947,-9.20127272548692],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8947566402320946,0.1341300002374346,0.13781546248207355]}}},{"kind":"MovingSphere","center_0":[4.563713860490538,0.2,-8.287624337716162],"center_1":[4.563713860490538,0.6565952200021026,-8.287624337716162],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7620071963959645,0.3193905765382101,0.0993371660571507]}}},{"kind":"MovingSphere","center_0":[4.747689115401107,0.2,-7.758193276536096],"center_1":[4.747689115401107,0.6497596679469395,-7.758193276536096],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3404334519513479,0.615516132884405,0.38746233727588275]}}},{"kind":"Sphere","center":[4.331212727763923,0.2,-6.663576976541055],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8711289011515795,0.022066297514793165,0.16068565264630763]},"fuzz":0.22103276049864495}},{"kind":"MovingSphere","center_0":[4.0318180124412155,0.2,-5.757486632228946],"center_1":[4.0318180124412155,0.48243210167890177,-5.757486632228946],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5670174196703301,0.732633999721269,0.2933695771493692]}}},{"kind":"Sphere","center":[4.361995231026886,0.2,-4.371441994977626],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7700735410296766,0.41209579938481267,0.8884632956152578]},"fuzz":0.07090888504458359}},{"kind":"Sphere","center":[4.553815692603554,0.2,-3.5413695342863742],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8620636180347607,0.021306915063532772,0.9464550221143888]},"fuzz":0.04639320843681283}},{"kind":"MovingSphere","center_0":[4.485654286781537,0.2,-2.472187555796941],"center_1":[4.485654286781537,0.6963369819914444,-2.472187555796941],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.13018897051093847,0.13626045994099867,0.11543072677381416]}}},{"kind":"MovingSphere","center_0":[4.382653120530563,0.2,-1.6932352992369424],"center_1":[4.382653120530563,0.6285685324209402,-1.6932352992369424],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4646544816889251,0.9079266534527455,0.8978125431044399]}}},{"kind":"MovingSphere","center_0":[4.184057994153536,0.2,-0.14795822492874866],"center_1":[4.184057994153536,0.4383386982390101,-0.14795822492874866],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7945834460711683,0.918637416883652,0.26322607648661767]}}},{"kind":"MovingSphere","center_0":[4.094833032213318,0.2,0.08839311673203039],"center_1":[4.094833032213318,0.4012015216567924,0.08839311673203039],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.27147534798582473,0.4376487938317406,0.45462027242920255]}}},{"kind":"MovingSphere","center_0":[4.103661299835278,0.2,1.0396356713560602],"center_1":[4.103661299835278,0.3415113137497294,1.0396356713560602],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.23811735716121207,0.7586777161555183,0.41744060258666416]}}},{"kind":"Sphere","center":[4.413305647172541,0.2,2.798130504916376],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.2643133202285206,0.30166172123788315,0.4926161098113353]},"fuzz":0.2057877989652468}},{"kind":"MovingSphere","center_0":[4.438155765812106,0.2,3.0622044790923177],"center_1":[4.438155765812106,0.43390540415190765,3.0622044790923177],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3942195223566245,0.6705871666520591,0.6302683866109147]}}},{"kind":"MovingSphere","center_0":[4.024725666542457,0.2,4.086187048933831],"center_1":[4.024725666542457,0.6259355914434626,4.086187048933831],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8300025220678473,0.5615928486150943,0.24467961728254384]}}},{"kind":"MovingSphere","center_0":[4.859405130816424,0.2,5.4375202997269305],"center_1":[4.859405130816424,0.5734707014386153,5.4375202997269305],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.414244518635432,0.3784895495556919,0.497594411275718]}}},{"kind":"MovingSphere","center_0":[4.089928092808091,0.2,6.182850275868262],"center_1":[4.089928092808091,0.615662677155933,6.182850275868262],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8360592106208893,0.4196009083821073,0.23129374084829557]}}},{"kind":"MovingSphere","center_0":[4.899650093351143,0.2,7.324930757233836],"center_1":[4.899650093351143,0.2311786447150606,7.324930757233836],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.003118233417264804,0.7272995591929752,0.4321901594963182]}}},{"kind":"MovingSphere","center_0":[4.752821918000974,0.2,8.069950591779984],"center_1":[4.752821918000974,0.6240291731044121,8.069950591779984],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.41295202655635066,0.22436002047659098,0.43606653398275785]}}},{"kind":"MovingSphere","center_0":[4.493961335580346,0.2,9.56021852591995],"center_1":[4.493961335580346,0.5306489204149005,9.56021852591995],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8487506856313645,0.30082560103014444,0.7496873343745412]}}},{"kind":"MovingSphere","center_0":[4.484136531394793,0.2,10.520645492033587],"center_1":[4.484136531394793,0.2896074970796289,10.520645492033587],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.33799103422480026,0.8167193026935031,0.6625254368574862]}}},{"kind":"MovingSphere","center_0":[5.603062742151847,0.2,-10.967090792196789],"center_1":[5.603062742151847,0.4376247273798322,-10.967090792196789],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.803133897162638,0.04848179625583526,0.08229885477801768]}}},{"kind":"MovingSphere","center_0":[5.783674107861356,0.2,-9.237360996168874],"center_1":[5.783674107861356,0.4506457661639775,-9.237360996168874],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2035237784128019,0.4729307395864757,0.8195049300573694]}}},{"kind":"MovingSphere","center_0":[5.5343860893673185,0.2,-8.934385892528251],"center_1":[5.5343860893673185,0.45576082077766095,-8.934385892528251],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.11909897105227674,0.17877878298337602,0.1557912921286868]}}},{"kind":"MovingSphere","center_0":[5.876461699303371,0.2,-7.946314976619896],"center_1":[5.876461699303371,0.407011867746972,-7.946314976619896],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.17964254131528645,0.3597097986745812,0.8914139968609369]}}},{"kind":"MovingSphere","center_0":[5.248587243486902,0.2,-6.3122050443305815],"center_1":[5.248587243486902,0.534093647930038,-6.3122050443305815],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.018726290140626434,0.5275583567108657,0.4049243798589368]}}},{"kind":"MovingSphere","center_0":[5.278894728620117,0.2,-5.736740793552774],"center_1":[5.278894728620117,0.30729683244035927,-5.736740793552774],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.15024377580982162,0.9235741500615282,0.9718547104023831]}}},{"kind":"Sphere","center":[5.402744052004783,0.2,-4.962717552659395],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7915597794193094,0.19792186588548755,0.9636596509857509]},"fuzz":0.35034724598298594}},{"kind":"MovingSphere","center_0":[5.094638178437346,0.2,-3.7439386005130317],"center_1":[5.094638178437346,0.6445293214157668,-3.7439386005130317],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.45425559880951516,0.43606356682363967,0.9907350420453922]}}},{"kind":"Sphere","center":[5.840579719390093,0.2,-2.7502896183227965],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.45634947568301887,0.38387636168347705,0.8813452678900093]},"fuzz":0.2170194938726242}},{"kind":"MovingSphere","center_0":[5.2677976578548025,0.2,-1.118712645386824],"center_1":[5.2677976578548025,0.484847099604469,-1.118712645386824],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6837034344323909,0.6954049950808638,0.44910364596811925]}}},{"kind":"MovingSphere","center_0":[5.59824220201345,0.2,-0.2885541252621029],"center_1":[5.59824220201345,0.6583424540275202,-0.2885541252621029],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.888186396607791,0.5483133370936506,0.23680702765927686]}}},{"kind":"Sphere","center":[5.197161786886761,0.2,0.2805746907280739],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8722092698209414,0.07502097063675306,0.06102976383826264]},"fuzz":0.3616037754246463}},{"kind":"MovingSphere","center_0":[5.192884318483833,0.2,1.7220913637755648],"center_1":[5.192884318483833,0.2051479929612226,1.7220913637755648],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9523820916498598,0.2823639469631387,0.7168452795688238]}}},{"kind":"MovingSphere","center_0":[5.572287393815684,0.2,2.795922457978163],"center_1":[5.572287393815684,0.6117032834380414,2.795922457978163],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6731492192454769,0.7172576159516302,0.5598339534426116]}}},{"kind":"MovingSphere","center_0":[5.132561715642847,0.2,3.2317516754892543],"center_1":[5.132561715642847,0.37306427814116155,3.2317516754892543],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5463929100645313,0.4638520165838702,0.9086371761575991]}}},{"kind":"Sphere","center":[5.566915564725073,0.2,4.050355831065246],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8819820055987415,0.42291158616858704,0.9110346309383568]},"fuzz":0.347051155937653}},{"kind":"MovingSphere","center_0":[5.01974596406441,0.2,5.095718396089894],"center_1":[5.01974596406441,0.40971826610665146,5.095718396089894],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7925199066617217,0.3503825107660983,0.5805618799345427]}}},{"kind":"MovingSphere","center_0":[5.430520575143088,0.2,6.771216755791448],"center_1":[5.430520575143088,0.6415151908286771,6.771216755791448],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3638933878456372,0.5653398143113624,0.7968697577849695]}}},{"kind":"MovingSphere","center_0":[5.003940634121426,0.2,7.760934693325558],"center_1":[5.003940634121426,0.32820706031564445,7.760934693325558],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.17285012701344082,0.8974862180469299,0.18471633210670824]}}},{"kind":"MovingSphere","center_0":[5.2620919486301005,0.2,8.891643601671747],"center_1":[5.2620919486301005,0.4146165603037089,8.891643601671747],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9020988130884888,0.8206670030036047,0.860751379577555]}}},{"kind":"MovingSphere","center_0":[5.209577320223321,0.2,9.874030276423138],"center_1":[5.209577320223321,0.5061506768392923,9.874030276423138],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3388021689531351,0.8471937732659534,0.3005748701547428]}}},{"kind":"MovingSphere","center_0":[5.164289330988666,0.2,10.141140866636464],"center_1":[5.164289330988666,0.4257616265997423,10.141140866636464],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.16399791063571767,0.24071767751951745,0.8631716708709087]}}},{"kind":"MovingSphere","center_0":[6.689657519398085,0.2,-10.359886286469939],"center_1":[6.689657519398085,0.5914119321262665,-10.359886286469939],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6558598083769245,0.4346284264284177,0.12737785663570933]}}},{"kind":"MovingSphere","center_0":[6.311394226676123,0.2,-9.77993854003498],"center_1":[6.311394226676123,0.5569708172233931,-9.77993854003498],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.05640618898174088,0.37538746788366195,0.34088590423514487]}}},{"kind":"MovingSphere","center_0":[6.655000701813223,0.2,-8.849740118069196],"center_1":[6.655000701813223,0.5548352111629546,-8.849740118069196],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.023422072198743926,0.5238061739861799,0.7846526257788697]}}},{"kind":"MovingSphere","center_0":[6.245421995772777,0.2,-7.739284250637338],"center_1":[6.245421995772777,0.46201233318496465,-7.739284250637338],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6522320104395685,0.5842664806443323,0.5687496228844924]}}},{"kind":"MovingSphere","center_0":[6.45069731621658,0.2,-6.170571698400206],"center_1":[6.45069731621658,0.40194687065831075,-6.170571698400206],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2457797924084817,0.9854564858847414,0.8677165641261244]}}},{"kind":"Sphere","center":[6.895936173482344,0.2,-5.92510295181321],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[6.375309828168171,0.2,-4.13568745951906],"center_1":[6.375309828168171,0.2444670891330814,-4.13568745951906],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.506708755477222,0.2550492534140416,0.6332678063207948]}}},{"kind":"MovingSphere","center_0":[6.459262454031331,0.2,-3.484282573200644],"center_1":[6.459262454031331,0.3288918110195093,-3.484282573200644],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3336561049680544,0.7498740517417284,0.2461688321079456]}}},{"kind":"Sphere","center":[6.342681148382452,0.2,-2.8553096674723117],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.4835942031890039,0.709103215200596,0.6711106773119753]},"fuzz":0.06425239115162085}},{"kind":"MovingSphere","center_0":[6.1760725685680065,0.2,-1.399231876595393],"center_1":[6.1760725685680065,0.3551616609244163,-1.399231876595393],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2745057189347546,0.5144255678561267,0.4980953607958638]}}},{"kind":"MovingSphere","center_0":[6.28067574318157,0.2,-0.14597926334006417],"center_1":[6.28067574318157,0.5420146369305905,-0.14597926334006417],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.537843847905092,0.14310638605346915,0.9838980841201772]}}},{"kind":"MovingSphere","center_0":[6.303749210324569,0.2,0.14213672716507506],"center_1":[6.303749210324569,0.3843649353199014,0.14213672716507506],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.35986115135824726,0.38027168305517645,0.40829531371256045]}}},{"kind":"MovingSphere","center_0":[6.561582256863215,0.2,1.7578294619188308],"center_1":[6.561582256863215,0.3769586570073205,1.7578294619188308],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7802332116100397,0.6915546214360786,0.7465569719979948]}}},{"kind":"MovingSphere","center_0":[6.448291706572036,0.2,2.2517895348881174],"center_1":[6.448291706572036,0.27713507987093194,2.2517895348881174],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7539458242823813,0.40579639444752336,0.6483095898713553]}}},{"kind":"MovingSphere","center_0":[6.336619835484362,0.2,3.7579829022166598],"center_1":[6.336619835484362,0.6534376540893789,3.7579829022166598],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7695242524396757,0.7971294966802118,0.3249305913951006]}}},{"kind":"MovingSphere","center_0":[6.421147659802305,0.2,4.122361030944097],"center_1":[6.421147659802305,0.6509778487019715,4.122361030944097],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2032556985754883,0.19467319877104972,0.06380666305479288]}}},{"kind":"MovingSphere","center_0":[6.331297147440146,0.2,5.508569178322856],"center_1":[6.331297147440146,0.6092902101753588,5.508569178322856],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9716494335640526,0.7216809768411094,0.16419320295722906]}}},{"kind":"MovingSphere","center_0":[6.5164261676376585,0.2,6.0238415216348615],"center_1":[6.5164261676376585,0.2499160907362326,6.0238415216348615],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5825992827456596,0.13724728711490708,0.20284539736609997]}}},{"kind":"Sphere","center":[6.549080635654914,0.2,7.310870621775824],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8706835632460788,0.8935908536876405,0.8993270230077313]},"fuzz":0.1341719194990485}},{"kind":"MovingSphere","center_0":[6.11357216194585,0.2,8.48436452035122],"center_1":[6.11357216194585,0.3360352545769953,8.48436452035122],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8989152086857208,0.14909366236338983,0.7268062207073662]}}},{"kind":"Sphere","center":[6.21738955449612,0.2,9.1731587961318],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"MovingSphere","center_0":[6.488828479619611,0.2,10.887509101865156],"center_1":[6.488828479619611,0.26914923069137237,10.887509101865156],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3529930324965296,0.9414292979897796,0.2743332299408274]}}},{"kind":"MovingSphere","center_0":[7.842788134106972,0.2,-10.632059766900513],"center_1":[7.842788134106972,0.24186894088329164,-10.632059766900513],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9008334137254632,0.06817572823131757,0.28057655451200403]}}},{"kind":"MovingSphere","center_0":[7.036364537402165,0.2,-9.873570943009785],"center_1":[7.036364537402165,0.4075995485772835,-9.873570943009785],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8822114209055707,0.9873556191703634,0.8799573166163741]}}},{"kind":"MovingSphere","center_0":[7.264480923774438,0.2,-8.654482457478814],"center_1":[7.264480923774438,0.49468024112617076,-8.654482457478814],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4992984936964866,0.4880289293263289,0.892171967469154]}}},{"kind":"MovingSphere","center_0":[7.5674280038476915,0.2,-7.495707015706654],"center_1":[7.5674280038476915,0.6268371364919607,-7.495707015706654],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5774141241687998,0.37163892551986843,0.3138788475933485]}}},{"kind":"MovingSphere","center_0":[7.8805621489602204,0.2,-6.10537104470842],"center_1":[7.8805621489602204,0.29363179498886743,-6.10537104470842],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.49123209424044845,0.3711905315277657,0.6626187019979082]}}},{"kind":"MovingSphere","center_0":[7.667244823203864,0.2,-5.286440842151386],"center_1":[7.667244823203864,0.3763998997171804,-5.286440842151386],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.06732337456312121,0.7207552656924969,0.8540002643729145]}}},{"kind":"Sphere","center":[7.256877181363664,0.2,-4.185526700099318],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5087539164833164,0.37555361059988335,0.04069947099705873]},"fuzz":0.4053271798840743}},{"kind":"MovingSphere","center_0":[7.0371328078881605,0.2,-3.10254800046524],"center_1":[7.0371328078881605,0.25653688956196047,-3.10254800046524],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6829356379407445,0.8716422983878871,0.34568013694919264]}}},{"kind":"MovingSphere","center_0":[7.072502735874348,0.2,-2.1480964513041485],"center_1":[7.072502735874348,0.5621243903316289,-2.1480964513041485],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9951931350120495,0.6744236499985317,0.03225521470122916]}}},{"kind":"MovingSphere","center_0":[7.403118479139388,0.2,-1.2767074732973214],"center_1":[7.403118479139388,0.5187499227391277,-1.2767074732973214],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9244776162021533,0.1666190678688646,0.7222455969091426]}}},{"kind":"MovingSphere","center_0":[7.634456680188247,0.2,-0.6187877103244295],"center_1":[7.634456680188247,0.5746824664932109,-0.6187877103244295],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.14784896269282255,0.00259414739460051,0.08016171397690419]}}},{"kind":"MovingSphere","center_0":[7.690679640083307,0.2,0.652153567585007],"center_1":[7.690679640083307,0.3641713286847819,0.652153567585007],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.46298778590425216,0.1715246312950276,0.6572772214061084]}}},{"kind":"MovingSphere","center_0":[7.3048200014085705,0.2,1.154153006919208],"center_1":[7.3048200014085705,0.5852541557641628,1.154153006919208],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.20960036328532405,0.774644475543683,0.1744516935721332]}}},{"kind":"MovingSphere","center_0":[7.38198260906419,0.2,2.423208089174047],"center_1":[7.38198260906419,0.5520336966771204,2.423208089174047],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.31082026443605804,0.09538879227242747,0.9454292831887894]}}},{"kind":"MovingSphere","center_0":[7.276883729131973,0.2,3.67114624787231],"center_1":[7.276883729131973,0.21286449278629266,3.67114624787231],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.43686194715559923,0.9216840540800253,0.6979754225095933]}}},{"kind":"MovingSphere","center_0":[7.352680875566908,0.2,4.358241351105744],"center_1":[7.352680875566908,0.35116743391669664,4.358241351105744],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.40286486157311274,0.6613372170997149,0.3312490706513933]}}},{"kind":"MovingSphere","center_0":[7.344028518544712,0.2,5.606578117851813],"center_1":[7.344028518544712,0.30951426833110357,5.606578117851813],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.654111911603263,0.25178829373814593,0.9396098961822756]}}},{"kind":"Sphere","center":[7.692590576572462,0.2,6.164413414650629],"radius":0.2,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"Sphere","center":[7.435895605955267,0.2,7.472719401824113],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.985759616742738,0.627184492833825,0.023471397739749378]},"fuzz":0.10223290763189175}},{"kind":"MovingSphere","center_0":[7.48011657069428,0.2,8.83127998821424],"center_1":[7.48011657069428,0.6523184060963885,8.83127998821424],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7396458040432929,0.2858230029612945,0.21554371871657807]}}},{"kind":"MovingSphere","center_0":[7.45204965118903,0.2,9.196362263241813],"center_1":[7.45204965118903,0.4233725468998372,9.196362263241813],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7851710907694591,0.9524232209808783,0.9621227740413627]}}},{"kind":"MovingSphere","center_0":[7.142225513829668,0.2,10.296490201310041],"center_1":[7.142225513829668,0.5469690497356141,10.296490201310041],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3780298367635484,0.9928271522414891,0.995524689652485]}}},{"kind":"MovingSphere","center_0":[8.100758377068033,0.2,-10.29057069735679],"center_1":[8.100758377068033,0.543386277740326,-10.29057069735679],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.16292857976774777,0.2310460635255449,0.3290942044404197]}}},{"kind":"Sphere","center":[8.389769831762797,0.2,-9.133353860034179],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.9916780467679189,0.6108531464078093,0.768304186440036]},"fuzz":0.06467076992328469}},{"kind":"MovingSphere","center_0":[8.527878131932567,0.2,-8.576235803943657],"center_1":[8.527878131932567,0.47324403753713423,-8.576235803943657],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.43418973755615986,0.4251431801689809,0.8524834931840504]}}},{"kind":"MovingSphere","center_0":[8.83048882169765,0.2,-7.83850350034484],"center_1":[8.83048882169765,0.46139240509160345,-7.83850350034484],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.06703565315699245,0.6663339838017641,0.9689216929091342]}}},{"kind":"MovingSphere","center_0":[8.417604959841064,0.2,-6.38181138746978],"center_1":[8.417604959841064,0.5509668049011573,-6.38181138746978],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.13098740232454276,0.9587278939726136,0.6399959880836805]}}},{"kind":"Sphere","center":[8.341700554991135,0.2,-5.1367111514474475],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.2871558504346532,0.05432876287874144,0.5070291485899174]},"fuzz":0.371531557784638}},{"kind":"MovingSphere","center_0":[8.82995582558991,0.2,-4.2133160787681705],"center_1":[8.82995582558991,0.36726572592064594,-4.2133160787681705],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.33621304005838093,0.3152816829030556,0.20128654435828763]}}},{"kind":"MovingSphere","center_0":[8.097827352114804,0.2,-3.4039783961873677],"center_1":[8.097827352114804,0.6456508613974488,-3.4039783961873677],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.09852357739131645,0.7912676903087856,0.9281947902456282]}}},{"kind":"MovingSphere","center_0":[8.498860991664149,0.2,-2.1482129864853547],"center_1":[8.498860991664149,0.690252191395305,-2.1482129864853547],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3223947496817885,0.199800917833711,0.12868824665172784]}}},{"kind":"MovingSphere","center_0":[8.14591826150508,0.2,-1.6116369147981515],"center_1":[8.14591826150508,0.48988793275143666,-1.6116369147981515],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7170665191502306,0.24530826842782227,0.859571615847984]}}},{"kind":"MovingSphere","center_0":[8.518343895325085,0.2,-0.3196690476886702],"center_1":[8.518343895325085,0.28089862475906785,-0.3196690476886702],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.14761370012772823,0.08045493850466556,0.5559516842485184]}}},{"kind":"MovingSphere","center_0":[8.890677794979808,0.2,0.1224098821566557],"center_1":[8.890677794979808,0.6196048893387816,0.1224098821566557],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9654373119960378,0.021415688352921514,0.06003856519839079]}}},{"kind":"MovingSphere","center_0":[8.793609873872017,0.2,1.810152444646299],"center_1":[8.793609873872017,0.5405770388425275,1.810152444646299],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.09724976083128567,0.4289819687935539,0.2818782614150015]}}},{"kind":"Sphere","center":[8.124779520981233,0.2,2.704661158242855],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5840665691446356,0.4592468927069462,0.3677699259461473]},"fuzz":0.08204549590921628}},{"kind":"MovingSphere","center_0":[8.521129905838368,0.2,3.4063696458316244],"center_1":[8.521129905838368,0.3908659984605429,3.4063696458316244],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5524094601999938,0.5174538467763217,0.9394627779798517]}}},{"kind":"MovingSphere","center_0":[8.353731182931545,0.2,4.495464459682581],"center_1":[8.353731182931545,0.2972972229659088,4.495464459682581],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8642853746183594,0.8335884235738535,0.6662543084202615]}}},{"kind":"MovingSphere","center_0":[8.413412505948347,0.2,5.565004891447419],"center_1":[8.413412505948347,0.4150457655281505,5.565004891447419],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9852879238790122,0.4176645532162182,0.27686009566198]}}},{"kind":"MovingSphere","center_0":[8.625281982338214,0.2,6.3863119657825935],"center_1":[8.625281982338214,0.5643103061348531,6.3863119657825935],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.09160730768458025,0.035698825352033836,0.0071494726082503846]}}},{"kind":"MovingSphere","center_0":[8.43364092283442,0.2,7.77395315459816],"center_1":[8.43364092283442,0.4713389231004265,7.77395315459816],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7380250820755054,0.324952745800263,0.3789948890236352]}}},{"kind":"MovingSphere","center_0":[8.407880696172871,0.2,8.54210445025993],"center_1":[8.407880696172871,0.6396392822220993,8.54210445025993],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.12691960404409386,0.5315621133690036,0.35208427267909337]}}},{"kind":"MovingSphere","center_0":[8.069836540977711,0.2,9.640727046195565],"center_1":[8.069836540977711,0.5216342971544738,9.640727046195565],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2984735863093959,0.16074476533411985,0.6173008658389361]}}},{"kind":"MovingSphere","center_0":[8.886210652315228,0.2,10.732472820026054],"center_1":[8.886210652315228,0.33430049463181793,10.732472820026054],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2662929782549679,0.9204273819116722,0.7779235135227438]}}},{"kind":"MovingSphere","center_0":[9.623125834425045,0.2,-10.155221098265363],"center_1":[9.623125834425045,0.21334821306648705,-10.155221098265363],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5866904069065999,0.8042889440519756,0.06892005095168718]}}},{"kind":"MovingSphere","center_0":[9.616917423930513,0.2,-9.103276171248554],"center_1":[9.616917423930513,0.347437936498112,-9.103276171248554],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.03828732373764354,0.1165718934708031,0.3041006744662542]}}},{"kind":"MovingSphere","center_0":[9.189847689086871,0.2,-8.193274344437304],"center_1":[9.189847689086871,0.5859537864295137,-8.193274344437304],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6608034942140801,0.670315015952774,0.5376552990936669]}}},{"kind":"MovingSphere","center_0":[9.042465579472466,0.2,-7.775898636696345],"center_1":[9.042465579472466,0.47308372755122835,-7.775898636696345],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.547708958205599,0.38824830247235576,0.27471085312139265]}}},{"kind":"MovingSphere","center_0":[9.799854445239744,0.2,-6.926048349088687],"center_1":[9.799854445239744,0.387269872730082,-6.926048349088687],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4024115286582297,0.7275457122829685,0.9971809545589883]}}},{"kind":"Sphere","center":[9.796737674141747,0.2,-5.177015886454749],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5348605515244886,0.8539200687699873,0.221041133103552]},"fuzz":0.4283340110580939}},{"kind":"Sphere","center":[9.527636064956466,0.2,-4.337000422111344],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.19691170422394721,0.86755744409777,0.4942781417512785]},"fuzz":0.38972415940270755}},{"kind":"MovingSphere","center_0":[9.66420311592361,0.2,-3.1182957222158194],"center_1":[9.66420311592361,0.341712716410388,-3.1182957222158194],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8008706025494536,0.9032734413387002,0.46036939317837633]}}},{"kind":"Sphere","center":[9.842229756730582,0.2,-2.186423254809527],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.6194853291035982,0.12419693461411163,0.6237388993337407]},"fuzz":0.12257699636773223}},{"kind":"MovingSphere","center_0":[9.355391508484086,0.2,-1.7759035878592404],"center_1":[9.355391508484086,0.516426076719813,-1.7759035878592404],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.27778865290366195,0.03899245771810533,0.034744772135007373]}}},{"kind":"MovingSphere","center_0":[9.42096087997064,0.2,-0.5033516746531289],"center_1":[9.42096087997064,0.4650075797832662,-0.5033516746531289],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.27897235638279816,0.8814678394881943,0.055984456372180524]}}},{"kind":"MovingSphere","center_0":[9.024005956116644,0.2,0.3554946556221172],"center_1":[9.024005956116644,0.2585811837415572,0.3554946556221172],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.49898387327085914,0.7437550596760796,0.5617103940311605]}}},{"kind":"MovingSphere","center_0":[9.295485874608255,0.2,1.8746657848331338],"center_1":[9.295485874608255,0.4877006820496847,1.8746657848331338],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.30935369616454644,0.8051721425242926,0.12943287196103492]}}},{"kind":"MovingSphere","center_0":[9.750466079846506,0.2,2.0457577641938594],"center_1":[9.750466079846506,0.273764711359382,2.0457577641938594],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9738686239500627,0.8574128370739553,0.5013441603661764]}}},{"kind":"MovingSphere","center_0":[9.293247573629461,0.2,3.4741799931084474],"center_1":[9.293247573629461,0.3125275936943965,3.4741799931084474],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8381032957777537,0.25839758771186605,0.7711720847299457]}}},{"kind":"MovingSphere","center_0":[9.523290048561059,0.2,4.892303994581644],"center_1":[9.523290048561059,0.3583535749311482,4.892303994581644],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.054667996667873364,0.6238791269858126,0.934291421155222]}}},{"kind":"MovingSphere","center_0":[9.280403851934485,0.2,5.6885048984335205],"center_1":[9.280403851934485,0.41146500310514494,5.6885048984335205],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9500156040912335,0.1845095306039255,0.2965827695525993]}}},{"kind":"MovingSphere","center_0":[9.25312525142411,0.2,6.079844767873964],"center_1":[9.25312525142411,0.42788244494508804,6.079844767873964],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.21548013837219648,0.353232322236783,0.18212035477992616]}}},{"kind":"Sphere","center":[9.111621816061277,0.2,7.8325328023621275],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8554538683679513,0.16455830450345132,0.1394365818361909]},"fuzz":0.40140144622101137}},{"kind":"Sphere","center":[9.864231013472143,0.2,8.00195556369009],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.3878132803852601,0.36077788452187276,0.43408600251875673]},"fuzz":0.3825871908573951}},{"kind":"MovingSphere","center_0":[9.546541866911715,0.2,9.661493798764901],"center_1":[9.546541866911715,0.4157305801291398,9.661493798764901],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6707754791324758,0.211672202537319,0.820841826333272]}}},{"kind":"MovingSphere","center_0":[9.452739360055375,0.2,10.01869155093926],"center_1":[9.452739360055375,0.5471100640426998,10.01869155093926],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4622744264810712,0.1989308902622413,0.025273592565623115]}}},{"kind":"MovingSphere","center_0":[10.771892805463935,0.2,-10.636510393097588],"center_1":[10.771892805463935,0.4834265119205214,-10.636510393097588],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8126968652499975,0.8747755776157,0.5055041977122048]}}},{"kind":"MovingSphere","center_0":[10.810348794331157,0.2,-9.909833067037777],"center_1":[10.810348794331157,0.36845428155484466,-9.909833067037777],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4087644328805866,0.2833680182447913,0.7522448155742338]}}},{"kind":"MovingSphere","center_0":[10.20638791835384,0.2,-8.432603129553232],"center_1":[10.20638791835384,0.25435591751681036,-8.432603129553232],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8568642439988186,0.06362157057149309,0.9513141180427998]}}},{"kind":"MovingSphere","center_0":[10.33379751268859,0.2,-7.133652846463213],"center_1":[10.33379751268859,0.654320717108738,-7.133652846463213],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7745265284758562,0.004583739221472705,0.14185117335546793]}}},{"kind":"MovingSphere","center_0":[10.476415374453437,0.2,-6.358949203857995],"center_1":[10.476415374453437,0.476326686328363,-6.358949203857995],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.42149297622842696,0.032425860867896894,0.023397493333789043]}}},{"kind":"MovingSphere","center_0":[10.654197169544377,0.2,-5.170413998324609],"center_1":[10.654197169544377,0.5676802114162507,-5.170413998324609],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3993529341357942,0.7160760437034315,0.3456334513907362]}}},{"kind":"MovingSphere","center_0":[10.563930192543065,0.2,-4.255951978945821],"center_1":[10.563930192543065,0.6108736230177303,-4.255951978945821],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6209140928691057,0.8212360886017509,0.5225349408797308]}}},{"kind":"MovingSphere","center_0":[10.706097875192162,0.2,-3.627592706275289],"center_1":[10.706097875192162,0.22164064902202346,-3.627592706275289],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8758186404599217,0.613761911532019,0.2572593972760755]}}},{"kind":"MovingSphere","center_0":[10.846728518386392,0.2,-2.738083844610199],"center_1":[10.846728518386392,0.692537057325477,-2.738083844610199],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.11016415776690835,0.24688892510249127,0.35299783635430826]}}},{"kind":"Sphere","center":[10.099746314235215,0.2,-1.4687640012099736],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.14386483261515104,0.430343731256299,0.4186842599039249]},"fuzz":0.49363779875779046}},{"kind":"MovingSphere","center_0":[10.788469837876141,0.2,-0.3849742099154366],"center_1":[10.788469837876141,0.25015504012240947,-0.3849742099154366],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7995727667707428,0.11655586938770557,0.9588191677231848]}}},{"kind":"MovingSphere","center_0":[10.766002998702513,0.2,0.8292254755082847],"center_1":[10.766002998702513,0.6692247409536516,0.8292254755082847],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6216818900328149,0.4903198524797301,0.3491979519720405]}}},{"kind":"MovingSphere","center_0":[10.86770771169521,0.2,1.8295763580602027],"center_1":[10.86770771169521,0.6510281195606551,1.8295763580602027],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4302579700052467,0.2972236619172126,0.5231546945267183]}}},{"kind":"MovingSphere","center_0":[10.170573345667547,0.2,2.26886854544772],"center_1":[10.170573345667547,0.42991979690976906,2.26886854544772],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.536098237038749,0.2825604142022975,0.1465442054537902]}}},{"kind":"MovingSphere","center_0":[10.095763766195699,0.2,3.0405593457238753],"center_1":[10.095763766195699,0.5015132398545237,3.0405593457238753],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9120212764501994,0.35220667386794524,0.00014671094284568476]}}},{"kind":"MovingSphere","center_0":[10.68246375303984,0.2,4.733301508824018],"center_1":[10.68246375303984,0.5695043664042938,4.733301508824018],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9353370657048152,0.3457078223128469,0.4560615733250397]}}},{"kind":"MovingSphere","center_0":[10.207548114739915,0.2,5.107237076942218],"center_1":[10.207548114739915,0.6567387451403455,5.107237076942218],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2396881696000981,0.6689828078353113,0.8424417086430971]}}},{"kind":"MovingSphere","center_0":[10.264203403510406,0.2,6.352666575138006],"center_1":[10.264203403510406,0.560849962129768,6.352666575138006],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4120825639519925,0.893112385354236,0.6191153617749288]}}},{"kind":"MovingSphere","center_0":[10.751125634963973,0.2,7.391377485486307],"center_1":[10.751125634963973,0.22568327011556372,7.391377485486307],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8472462157097598,0.533721118742877,0.25275529219726844]}}},{"kind":"Sphere","center":[10.695946879119465,0.2,8.842099792192915],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.921812982082665,0.12410940030823037,0.09600185448224208]},"fuzz":0.20626589255481276}},{"kind":"MovingSphere","center_0":[10.73737710773145,0.2,9.690986330165163],"center_1":[10.73737710773145,0.29957686340966866,9.690986330165163],"time_0":0,"time_1":1,"radius":0.2,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8291196531847222,0.8981558033860391,0.3627632173933246]}}},{"kind":"Sphere","center":[10.78838524931196,0.2,10.077943087906458],"radius":0.2,"material":{"kind":"Metal","albedo":{"kind":"SolidColor","color":[0.16145633125889525,0.14492012299879975,0.875005832080493]},"fuzz":0.225360674429816}}],"priority_objects":[{"kind":"Sphere","center":[0,1,0],"radius":1,"material":{"kind":"Dielectric","refractive_index":1.5}}]} \ No newline at end of file +{"time_0":0,"time_1":1,"camera":{"look_from":[13,2,3],"look_at":[0,0,0],"up":[0,1,0],"vertical_fov":25,"aperture":0,"focus_distance":10},"background_color":[0.7,0.7,0.9],"objects":[{"kind":"Sphere","center":[0,-1000,0],"radius":1000,"material":"ground material"},{"kind":"Sphere","priority":true,"center":[0,1,0],"radius":1,"material":"glass"},{"kind":"Sphere","center":[-4,1,0],"radius":1,"material":"lambertian sphere material"},{"kind":"Sphere","center":[4,1,0],"radius":1,"material":"metal sphere material"},{"kind":"MovingSphere","center_0":[-10.21721345481414,0.2,-10.902006925370452],"center_1":[-10.21721345481414,0.2986809983080439,-10.902006925370452],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_-11"},{"kind":"MovingSphere","center_0":[-10.882301232246656,0.2,-9.649629866738431],"center_1":[-10.882301232246656,0.6494297243225855,-9.649629866738431],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_-10"},{"kind":"MovingSphere","center_0":[-10.922718715970817,0.2,-8.152861317014155],"center_1":[-10.922718715970817,0.3510343236141296,-8.152861317014155],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_-9"},{"kind":"MovingSphere","center_0":[-10.988948773090852,0.2,-7.4834822653338176],"center_1":[-10.988948773090852,0.668529027092259,-7.4834822653338176],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_-8"},{"kind":"MovingSphere","center_0":[-10.663206297389277,0.2,-6.986413192717554],"center_1":[-10.663206297389277,0.29958675471302515,-6.986413192717554],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_-7"},{"kind":"MovingSphere","center_0":[-10.249794219573927,0.2,-5.783986619584336],"center_1":[-10.249794219573927,0.4953116700446187,-5.783986619584336],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_-6"},{"kind":"MovingSphere","center_0":[-10.507577954088184,0.2,-4.601816440026271],"center_1":[-10.507577954088184,0.6437136723199517,-4.601816440026271],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_-5"},{"kind":"MovingSphere","center_0":[-10.182289774522006,0.2,-3.671919162131029],"center_1":[-10.182289774522006,0.40863368266648753,-3.671919162131029],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_-4"},{"kind":"Sphere","center":[-10.932543550906233,0.2,-2.946086656437524],"radius":0.2,"material":"sphere material -11_-3"},{"kind":"MovingSphere","center_0":[-10.673235056909812,0.2,-1.3809815548811226],"center_1":[-10.673235056909812,0.6476370988671387,-1.3809815548811226],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_-2"},{"kind":"MovingSphere","center_0":[-10.543436376027898,0.2,-0.9716190611144261],"center_1":[-10.543436376027898,0.25897628682270785,-0.9716190611144261],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_-1"},{"kind":"Sphere","center":[-10.521223396293362,0.2,0.7945448350546896],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[-10.96867553398731,0.2,1.6433868920663173],"center_1":[-10.96867553398731,0.477624007063256,1.6433868920663173],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_1"},{"kind":"MovingSphere","center_0":[-10.231720890810468,0.2,2.1252658118736374],"center_1":[-10.231720890810468,0.6053766777001848,2.1252658118736374],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_2"},{"kind":"MovingSphere","center_0":[-10.263265153566234,0.2,3.144353552109265],"center_1":[-10.263265153566234,0.6396462745789908,3.144353552109265],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_3"},{"kind":"MovingSphere","center_0":[-10.571114034481623,0.2,4.416457953774649],"center_1":[-10.571114034481623,0.2797380242756145,4.416457953774649],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_4"},{"kind":"MovingSphere","center_0":[-10.852778758925245,0.2,5.009842449108066],"center_1":[-10.852778758925245,0.2338007421407277,5.009842449108066],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_5"},{"kind":"MovingSphere","center_0":[-10.1342627389341,0.2,6.468201331264931],"center_1":[-10.1342627389341,0.21008278131088315,6.468201331264931],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_6"},{"kind":"MovingSphere","center_0":[-10.582871201068851,0.2,7.418303183118667],"center_1":[-10.582871201068851,0.6356122851101409,7.418303183118667],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_7"},{"kind":"MovingSphere","center_0":[-10.324139859589634,0.2,8.779258009378571],"center_1":[-10.324139859589634,0.4374529067863185,8.779258009378571],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_8"},{"kind":"MovingSphere","center_0":[-10.200618583412478,0.2,9.483856574072401],"center_1":[-10.200618583412478,0.6435676089629072,9.483856574072401],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_9"},{"kind":"MovingSphere","center_0":[-10.321467801976231,0.2,10.778523963511157],"center_1":[-10.321467801976231,0.25211124090130804,10.778523963511157],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -11_10"},{"kind":"MovingSphere","center_0":[-9.970040456004742,0.2,-10.668913327310147],"center_1":[-9.970040456004742,0.5765958780526812,-10.668913327310147],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_-11"},{"kind":"MovingSphere","center_0":[-9.582600120190682,0.2,-9.329940237981315],"center_1":[-9.582600120190682,0.39358949220323686,-9.329940237981315],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_-10"},{"kind":"MovingSphere","center_0":[-9.937671068979437,0.2,-8.960658126670047],"center_1":[-9.937671068979437,0.6749412980493117,-8.960658126670047],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_-9"},{"kind":"MovingSphere","center_0":[-9.651644291925564,0.2,-7.2807811324282765],"center_1":[-9.651644291925564,0.4012591886142835,-7.2807811324282765],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_-8"},{"kind":"MovingSphere","center_0":[-9.570693203615884,0.2,-6.134150657301154],"center_1":[-9.570693203615884,0.6129145973888679,-6.134150657301154],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_-7"},{"kind":"MovingSphere","center_0":[-9.985355618234651,0.2,-5.457346221567051],"center_1":[-9.985355618234651,0.6919544626393956,-5.457346221567051],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_-6"},{"kind":"MovingSphere","center_0":[-9.882915465782,0.2,-4.467752033433897],"center_1":[-9.882915465782,0.6259112907381739,-4.467752033433897],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_-5"},{"kind":"MovingSphere","center_0":[-9.711498730872167,0.2,-3.8548389246814643],"center_1":[-9.711498730872167,0.3073864923627942,-3.8548389246814643],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_-4"},{"kind":"MovingSphere","center_0":[-9.73029901513976,0.2,-2.432161764096191],"center_1":[-9.73029901513976,0.46252923791375905,-2.432161764096191],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_-3"},{"kind":"Sphere","center":[-9.783262665439308,0.2,-1.7080020979732233],"radius":0.2,"material":"sphere material -10_-2"},{"kind":"Sphere","center":[-9.961998812287645,0.2,-0.7188970184866376],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[-9.924356519733283,0.2,0.15721770369671428],"center_1":[-9.924356519733283,0.21266196344570482,0.15721770369671428],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_0"},{"kind":"MovingSphere","center_0":[-9.260801697673056,0.2,1.146869358463762],"center_1":[-9.260801697673056,0.6572486384893574,1.146869358463762],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_1"},{"kind":"MovingSphere","center_0":[-9.10619898582807,0.2,2.7361935764249683],"center_1":[-9.10619898582807,0.4809204467564658,2.7361935764249683],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_2"},{"kind":"MovingSphere","center_0":[-9.556546764986049,0.2,3.262841623737495],"center_1":[-9.556546764986049,0.5058576924381777,3.262841623737495],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_3"},{"kind":"MovingSphere","center_0":[-9.556415546223217,0.2,4.645763270191498],"center_1":[-9.556415546223217,0.32816697255737054,4.645763270191498],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_4"},{"kind":"MovingSphere","center_0":[-9.50327781150552,0.2,5.838367552420037],"center_1":[-9.50327781150552,0.6725285693971754,5.838367552420037],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_5"},{"kind":"MovingSphere","center_0":[-9.365245543512184,0.2,6.024587990974648],"center_1":[-9.365245543512184,0.5045501599980591,6.024587990974648],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_6"},{"kind":"MovingSphere","center_0":[-9.8934483802942,0.2,7.192068239443129],"center_1":[-9.8934483802942,0.5723286402242114,7.192068239443129],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_7"},{"kind":"MovingSphere","center_0":[-9.190535350912956,0.2,8.08722157154278],"center_1":[-9.190535350912956,0.2886817256991115,8.08722157154278],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_8"},{"kind":"Sphere","center":[-9.799363492220442,0.2,9.813984347131441],"radius":0.2,"material":"sphere material -10_9"},{"kind":"MovingSphere","center_0":[-9.259941020822009,0.2,10.528171247771935],"center_1":[-9.259941020822009,0.4739585002041164,10.528171247771935],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -10_10"},{"kind":"MovingSphere","center_0":[-8.906227655783363,0.2,-10.248763706708242],"center_1":[-8.906227655783363,0.24116937701691316,-10.248763706708242],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_-11"},{"kind":"Sphere","center":[-8.176236407559976,0.2,-9.633599271272953],"radius":0.2,"material":"sphere material -9_-10"},{"kind":"Sphere","center":[-8.125065626464853,0.2,-8.79053168062091],"radius":0.2,"material":"glass"},{"kind":"Sphere","center":[-8.796004274158134,0.2,-7.102392397417139],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[-8.536054302213321,0.2,-6.111278530548496],"center_1":[-8.536054302213321,0.6286550147838346,-6.111278530548496],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_-7"},{"kind":"MovingSphere","center_0":[-8.904871219653824,0.2,-5.341251813093816],"center_1":[-8.904871219653824,0.21448957658727313,-5.341251813093816],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_-6"},{"kind":"MovingSphere","center_0":[-8.508398562570179,0.2,-4.946157064649912],"center_1":[-8.508398562570179,0.3156811735836271,-4.946157064649912],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_-5"},{"kind":"MovingSphere","center_0":[-8.500949845876425,0.2,-3.6899968327145176],"center_1":[-8.500949845876425,0.26730817758633113,-3.6899968327145176],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_-4"},{"kind":"Sphere","center":[-8.422032095236258,0.2,-2.790006391278801],"radius":0.2,"material":"sphere material -9_-3"},{"kind":"MovingSphere","center_0":[-8.965396100835724,0.2,-1.3982046859380497],"center_1":[-8.965396100835724,0.5433032632614081,-1.3982046859380497],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_-2"},{"kind":"MovingSphere","center_0":[-8.613642618609111,0.2,-0.9191239466143003],"center_1":[-8.613642618609111,0.36930815651726673,-0.9191239466143003],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_-1"},{"kind":"MovingSphere","center_0":[-8.950088703731694,0.2,0.6922526580126379],"center_1":[-8.950088703731694,0.31461668952889427,0.6922526580126379],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_0"},{"kind":"MovingSphere","center_0":[-8.74775392158686,0.2,1.749748466578625],"center_1":[-8.74775392158686,0.3012382709075669,1.749748466578625],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_1"},{"kind":"MovingSphere","center_0":[-8.573498082672542,0.2,2.4272152278475962],"center_1":[-8.573498082672542,0.6336999499448877,2.4272152278475962],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_2"},{"kind":"MovingSphere","center_0":[-8.57078874471561,0.2,3.0182712085610355],"center_1":[-8.57078874471561,0.4994363142149138,3.0182712085610355],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_3"},{"kind":"MovingSphere","center_0":[-8.282318876162343,0.2,4.61410075265306],"center_1":[-8.282318876162343,0.6926512644149347,4.61410075265306],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_4"},{"kind":"Sphere","center":[-8.116119448578962,0.2,5.2203793162278345],"radius":0.2,"material":"sphere material -9_5"},{"kind":"MovingSphere","center_0":[-8.50522236642608,0.2,6.6953011115163665],"center_1":[-8.50522236642608,0.5236182574276254,6.6953011115163665],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_6"},{"kind":"Sphere","center":[-8.858207461146801,0.2,7.494619127500763],"radius":0.2,"material":"sphere material -9_7"},{"kind":"MovingSphere","center_0":[-8.89101371552,0.2,8.24372973678132],"center_1":[-8.89101371552,0.2069595731014035,8.24372973678132],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_8"},{"kind":"MovingSphere","center_0":[-8.42198721126569,0.2,9.074276562278243],"center_1":[-8.42198721126569,0.37815548584695396,9.074276562278243],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_9"},{"kind":"MovingSphere","center_0":[-8.483597730216317,0.2,10.605870992939202],"center_1":[-8.483597730216317,0.5946124472609708,10.605870992939202],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -9_10"},{"kind":"Sphere","center":[-7.247563987542495,0.2,-10.706528787114669],"radius":0.2,"material":"sphere material -8_-11"},{"kind":"MovingSphere","center_0":[-7.536560872673585,0.2,-9.40246909022594],"center_1":[-7.536560872673585,0.26557330634258985,-9.40246909022594],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_-10"},{"kind":"MovingSphere","center_0":[-7.659013257653372,0.2,-8.428745239334413],"center_1":[-7.659013257653372,0.35530634019867896,-8.428745239334413],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_-9"},{"kind":"MovingSphere","center_0":[-7.179636075895687,0.2,-7.444171065885836],"center_1":[-7.179636075895687,0.25654745357206993,-7.444171065885836],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_-8"},{"kind":"MovingSphere","center_0":[-7.27772197969796,0.2,-6.6159237190029705],"center_1":[-7.27772197969796,0.44175765281928464,-6.6159237190029705],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_-7"},{"kind":"MovingSphere","center_0":[-7.665501978197586,0.2,-5.974438123334411],"center_1":[-7.665501978197586,0.590890728465971,-5.974438123334411],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_-6"},{"kind":"Sphere","center":[-7.375806878424542,0.2,-4.416652156511389],"radius":0.2,"material":"sphere material -8_-5"},{"kind":"MovingSphere","center_0":[-7.69320301924023,0.2,-3.8641518567711994],"center_1":[-7.69320301924023,0.2171274769073463,-3.8641518567711994],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_-4"},{"kind":"MovingSphere","center_0":[-7.388807512293902,0.2,-2.4411494708121775],"center_1":[-7.388807512293902,0.4301585955388128,-2.4411494708121775],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_-3"},{"kind":"Sphere","center":[-7.99745238156458,0.2,-1.524754356132501],"radius":0.2,"material":"sphere material -8_-2"},{"kind":"Sphere","center":[-7.397821518906138,0.2,-0.21118672381389714],"radius":0.2,"material":"sphere material -8_-1"},{"kind":"MovingSphere","center_0":[-7.857303935720814,0.2,0.7102076872633659],"center_1":[-7.857303935720814,0.3802921325322863,0.7102076872633659],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_0"},{"kind":"MovingSphere","center_0":[-7.944402522011905,0.2,1.018439578721313],"center_1":[-7.944402522011905,0.3957574581728532,1.018439578721313],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_1"},{"kind":"MovingSphere","center_0":[-7.845587137290522,0.2,2.430549498509309],"center_1":[-7.845587137290522,0.2484702534648609,2.430549498509309],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_2"},{"kind":"MovingSphere","center_0":[-7.313722003878468,0.2,3.1947139598103065],"center_1":[-7.313722003878468,0.29899016902939884,3.1947139598103065],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_3"},{"kind":"MovingSphere","center_0":[-7.957871547224009,0.2,4.348814088325254],"center_1":[-7.957871547224009,0.4176475704966179,4.348814088325254],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_4"},{"kind":"MovingSphere","center_0":[-7.534464160557367,0.2,5.19639851747802],"center_1":[-7.534464160557367,0.42586669227229207,5.19639851747802],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_5"},{"kind":"Sphere","center":[-7.794194567136009,0.2,6.552674667834014],"radius":0.2,"material":"sphere material -8_6"},{"kind":"Sphere","center":[-7.764302293748697,0.2,7.501945070999839],"radius":0.2,"material":"sphere material -8_7"},{"kind":"MovingSphere","center_0":[-7.371517653927404,0.2,8.287363219760113],"center_1":[-7.371517653927404,0.2760149867996306,8.287363219760113],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_8"},{"kind":"MovingSphere","center_0":[-7.6735776166768455,0.2,9.16570174020065],"center_1":[-7.6735776166768455,0.2822949780852417,9.16570174020065],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_9"},{"kind":"MovingSphere","center_0":[-7.225089861110147,0.2,10.666776177337068],"center_1":[-7.225089861110147,0.6911717305320386,10.666776177337068],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -8_10"},{"kind":"MovingSphere","center_0":[-6.133391487704544,0.2,-10.404427871337019],"center_1":[-6.133391487704544,0.5522441171114292,-10.404427871337019],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_-11"},{"kind":"MovingSphere","center_0":[-6.1086587925151274,0.2,-9.354287767899494],"center_1":[-6.1086587925151274,0.25715398090026537,-9.354287767899494],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_-10"},{"kind":"MovingSphere","center_0":[-6.429331373758113,0.2,-8.52811483485613],"center_1":[-6.429331373758113,0.30690074684898333,-8.52811483485613],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_-9"},{"kind":"MovingSphere","center_0":[-6.894285512555784,0.2,-7.635875091908239],"center_1":[-6.894285512555784,0.5379551603071375,-7.635875091908239],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_-8"},{"kind":"MovingSphere","center_0":[-6.725715380784,0.2,-6.790001981999281],"center_1":[-6.725715380784,0.516735797770318,-6.790001981999281],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_-7"},{"kind":"MovingSphere","center_0":[-6.68118952949649,0.2,-5.738697683193584],"center_1":[-6.68118952949649,0.3499160540634089,-5.738697683193584],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_-6"},{"kind":"MovingSphere","center_0":[-6.255764316746908,0.2,-4.6080821144766935],"center_1":[-6.255764316746908,0.6490462721503383,-4.6080821144766935],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_-5"},{"kind":"MovingSphere","center_0":[-6.493022664656737,0.2,-3.1623275327127827],"center_1":[-6.493022664656737,0.3552720875225414,-3.1623275327127827],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_-4"},{"kind":"MovingSphere","center_0":[-6.337517619872557,0.2,-2.954165868407767],"center_1":[-6.337517619872557,0.38119316168452594,-2.954165868407767],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_-3"},{"kind":"MovingSphere","center_0":[-6.112531727792115,0.2,-1.82732381215715],"center_1":[-6.112531727792115,0.332157706927998,-1.82732381215715],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_-2"},{"kind":"MovingSphere","center_0":[-6.993091464059609,0.2,-0.6449948178680939],"center_1":[-6.993091464059609,0.36418283117291445,-0.6449948178680939],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_-1"},{"kind":"MovingSphere","center_0":[-6.80408803477632,0.2,0.1347968480892632],"center_1":[-6.80408803477632,0.3193254979182915,0.1347968480892632],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_0"},{"kind":"MovingSphere","center_0":[-6.466393972623197,0.2,1.6629603308121572],"center_1":[-6.466393972623197,0.5116350685262205,1.6629603308121572],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_1"},{"kind":"MovingSphere","center_0":[-6.70447316930854,0.2,2.30408670181039],"center_1":[-6.70447316930854,0.6795557400235424,2.30408670181039],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_2"},{"kind":"MovingSphere","center_0":[-6.823190185384904,0.2,3.506715691594183],"center_1":[-6.823190185384904,0.6639343589157158,3.506715691594183],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_3"},{"kind":"MovingSphere","center_0":[-6.71895100032567,0.2,4.861780192108113],"center_1":[-6.71895100032567,0.34604125715972206,4.861780192108113],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_4"},{"kind":"MovingSphere","center_0":[-6.117179125643335,0.2,5.856321329608414],"center_1":[-6.117179125643335,0.6892489547012317,5.856321329608414],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_5"},{"kind":"MovingSphere","center_0":[-6.594809939308215,0.2,6.493251202960841],"center_1":[-6.594809939308215,0.5665041137884961,6.493251202960841],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_6"},{"kind":"MovingSphere","center_0":[-6.482459478093228,0.2,7.721437753632203],"center_1":[-6.482459478093228,0.21684861901962632,7.721437753632203],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_7"},{"kind":"MovingSphere","center_0":[-6.224053337557631,0.2,8.888937914009512],"center_1":[-6.224053337557631,0.6565733741010187,8.888937914009512],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_8"},{"kind":"Sphere","center":[-6.437675231671154,0.2,9.821779674314994],"radius":0.2,"material":"sphere material -7_9"},{"kind":"MovingSphere","center_0":[-6.673016441472033,0.2,10.128470635282989],"center_1":[-6.673016441472033,0.5093791802272074,10.128470635282989],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -7_10"},{"kind":"MovingSphere","center_0":[-5.670265900982035,0.2,-10.895773536176105],"center_1":[-5.670265900982035,0.5082325510770491,-10.895773536176105],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_-11"},{"kind":"MovingSphere","center_0":[-5.748619412918225,0.2,-9.671730968099743],"center_1":[-5.748619412918225,0.6968135892771941,-9.671730968099743],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_-10"},{"kind":"MovingSphere","center_0":[-5.144534280970073,0.2,-8.472065495254377],"center_1":[-5.144534280970073,0.2635583384223154,-8.472065495254377],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_-9"},{"kind":"Sphere","center":[-5.674368275230102,0.2,-7.733703233519579],"radius":0.2,"material":"sphere material -6_-8"},{"kind":"MovingSphere","center_0":[-5.248428344914176,0.2,-6.76148952956337],"center_1":[-5.248428344914176,0.50318517964746,-6.76148952956337],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_-7"},{"kind":"MovingSphere","center_0":[-5.732377274753238,0.2,-5.921893096602801],"center_1":[-5.732377274753238,0.2550523550026366,-5.921893096602801],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_-6"},{"kind":"MovingSphere","center_0":[-5.445550292987169,0.2,-4.429023530941456],"center_1":[-5.445550292987169,0.4596108581551978,-4.429023530941456],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_-5"},{"kind":"MovingSphere","center_0":[-5.6379182293667975,0.2,-3.8458091267768038],"center_1":[-5.6379182293667975,0.6288963159280407,-3.8458091267768038],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_-4"},{"kind":"MovingSphere","center_0":[-5.387425433421784,0.2,-2.872540653863486],"center_1":[-5.387425433421784,0.37515928105512614,-2.872540653863486],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_-3"},{"kind":"MovingSphere","center_0":[-5.910965754625451,0.2,-1.2292999817598225],"center_1":[-5.910965754625451,0.5588324569587617,-1.2292999817598225],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_-2"},{"kind":"MovingSphere","center_0":[-5.836076471696336,0.2,-0.2520381855360252],"center_1":[-5.836076471696336,0.20913307857891233,-0.2520381855360252],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_-1"},{"kind":"MovingSphere","center_0":[-5.1545347051342505,0.2,0.4873823684488799],"center_1":[-5.1545347051342505,0.6993349779334854,0.4873823684488799],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_0"},{"kind":"MovingSphere","center_0":[-5.152877597036853,0.2,1.6149682209398306],"center_1":[-5.152877597036853,0.43421881670623136,1.6149682209398306],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_1"},{"kind":"MovingSphere","center_0":[-5.717944548253956,0.2,2.702902367742124],"center_1":[-5.717944548253956,0.41119219645463506,2.702902367742124],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_2"},{"kind":"MovingSphere","center_0":[-5.959032227161228,0.2,3.4597015228740418],"center_1":[-5.959032227161228,0.43992811593003806,3.4597015228740418],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_3"},{"kind":"MovingSphere","center_0":[-5.773535177220421,0.2,4.739477573807352],"center_1":[-5.773535177220421,0.3089966146849437,4.739477573807352],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_4"},{"kind":"MovingSphere","center_0":[-5.745080392471422,0.2,5.863983641982802],"center_1":[-5.745080392471422,0.2200950314898405,5.863983641982802],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_5"},{"kind":"MovingSphere","center_0":[-5.158216021369365,0.2,6.624730776963091],"center_1":[-5.158216021369365,0.6869388278965167,6.624730776963091],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_6"},{"kind":"MovingSphere","center_0":[-5.6387174724665625,0.2,7.5958652222005],"center_1":[-5.6387174724665625,0.523490240544275,7.5958652222005],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_7"},{"kind":"Sphere","center":[-5.443014851721122,0.2,8.512241082297635],"radius":0.2,"material":"sphere material -6_8"},{"kind":"MovingSphere","center_0":[-5.297146988009122,0.2,9.40168098790835],"center_1":[-5.297146988009122,0.5475971460613944,9.40168098790835],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_9"},{"kind":"MovingSphere","center_0":[-5.914753048026495,0.2,10.315009009401058],"center_1":[-5.914753048026495,0.5630272217607766,10.315009009401058],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -6_10"},{"kind":"MovingSphere","center_0":[-4.648031167872516,0.2,-10.238746362603676],"center_1":[-4.648031167872516,0.2573163524880882,-10.238746362603676],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_-11"},{"kind":"MovingSphere","center_0":[-4.814828476025196,0.2,-9.109717287003697],"center_1":[-4.814828476025196,0.32484708352437014,-9.109717287003697],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_-10"},{"kind":"MovingSphere","center_0":[-4.284255241687211,0.2,-8.15436114677044],"center_1":[-4.284255241687211,0.306569264619092,-8.15436114677044],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_-9"},{"kind":"MovingSphere","center_0":[-4.855998496018596,0.2,-7.802835615282648],"center_1":[-4.855998496018596,0.680673981245145,-7.802835615282648],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_-8"},{"kind":"MovingSphere","center_0":[-4.555191560181787,0.2,-6.600294891941274],"center_1":[-4.555191560181787,0.5830658802142121,-6.600294891941274],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_-7"},{"kind":"MovingSphere","center_0":[-4.968401644239873,0.2,-5.616869972972266],"center_1":[-4.968401644239873,0.4464379496738919,-5.616869972972266],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_-6"},{"kind":"MovingSphere","center_0":[-4.820179756085363,0.2,-4.308748322731864],"center_1":[-4.820179756085363,0.22658363817511035,-4.308748322731864],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_-5"},{"kind":"MovingSphere","center_0":[-4.255128306947692,0.2,-3.467901768236482],"center_1":[-4.255128306947692,0.5240597173261259,-3.467901768236482],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_-4"},{"kind":"MovingSphere","center_0":[-4.958300993220629,0.2,-2.802589046006859],"center_1":[-4.958300993220629,0.345673573066459,-2.802589046006859],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_-3"},{"kind":"MovingSphere","center_0":[-4.163740572886555,0.2,-1.8085727073246889],"center_1":[-4.163740572886555,0.27603654969924624,-1.8085727073246889],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_-2"},{"kind":"MovingSphere","center_0":[-4.601176417879896,0.2,-0.44832522942473674],"center_1":[-4.601176417879896,0.5800552222993054,-0.44832522942473674],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_-1"},{"kind":"MovingSphere","center_0":[-4.613736917848552,0.2,0.815273950534759],"center_1":[-4.613736917848552,0.42621454796121766,0.815273950534759],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_0"},{"kind":"MovingSphere","center_0":[-4.3397329031149185,0.2,1.3790247243816443],"center_1":[-4.3397329031149185,0.5185064015105214,1.3790247243816443],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_1"},{"kind":"MovingSphere","center_0":[-4.8665939831435026,0.2,2.098029648202293],"center_1":[-4.8665939831435026,0.6628614417123455,2.098029648202293],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_2"},{"kind":"MovingSphere","center_0":[-4.479289968509992,0.2,3.1820674477677717],"center_1":[-4.479289968509992,0.5560387729235363,3.1820674477677717],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_3"},{"kind":"MovingSphere","center_0":[-4.832730064331788,0.2,4.43159929534765],"center_1":[-4.832730064331788,0.3121682654093216,4.43159929534765],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_4"},{"kind":"MovingSphere","center_0":[-4.298454579397926,0.2,5.633256760122004],"center_1":[-4.298454579397926,0.5245080358760006,5.633256760122004],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_5"},{"kind":"Sphere","center":[-4.854181872211861,0.2,6.438713659881185],"radius":0.2,"material":"glass"},{"kind":"Sphere","center":[-4.242258529438576,0.2,7.7468467027234125],"radius":0.2,"material":"sphere material -5_7"},{"kind":"MovingSphere","center_0":[-4.713356812167643,0.2,8.285329645554473],"center_1":[-4.713356812167643,0.5365863662312997,8.285329645554473],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_8"},{"kind":"MovingSphere","center_0":[-4.803258663438509,0.2,9.158786201989855],"center_1":[-4.803258663438509,0.3827795864301983,9.158786201989855],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_9"},{"kind":"MovingSphere","center_0":[-4.295357669069473,0.2,10.400776918634305],"center_1":[-4.295357669069473,0.2004821193832303,10.400776918634305],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -5_10"},{"kind":"MovingSphere","center_0":[-3.984709230687697,0.2,-10.746939690073699],"center_1":[-3.984709230687697,0.20052664328028041,-10.746939690073699],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_-11"},{"kind":"Sphere","center":[-3.7827138420712765,0.2,-9.72512029603807],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[-3.6448163500939703,0.2,-8.416330132237224],"center_1":[-3.6448163500939703,0.29601377420092084,-8.416330132237224],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_-9"},{"kind":"Sphere","center":[-3.5907256188901813,0.2,-7.177779729255023],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[-3.2040983478752314,0.2,-6.913608741724466],"center_1":[-3.2040983478752314,0.3270483161521576,-6.913608741724466],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_-7"},{"kind":"MovingSphere","center_0":[-3.724034146132106,0.2,-5.266502670271353],"center_1":[-3.724034146132106,0.23863845483411,-5.266502670271353],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_-6"},{"kind":"MovingSphere","center_0":[-3.858808555712441,0.2,-4.535031321029516],"center_1":[-3.858808555712441,0.21229469529726958,-4.535031321029516],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_-5"},{"kind":"Sphere","center":[-3.415306924209191,0.2,-3.663791625962116],"radius":0.2,"material":"sphere material -4_-4"},{"kind":"MovingSphere","center_0":[-3.8322659779108297,0.2,-2.369569343437634],"center_1":[-3.8322659779108297,0.23976070655231657,-2.369569343437634],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_-3"},{"kind":"MovingSphere","center_0":[-3.277456600301211,0.2,-1.6295756800351304],"center_1":[-3.277456600301211,0.4542830354512037,-1.6295756800351304],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_-2"},{"kind":"MovingSphere","center_0":[-3.116843199368397,0.2,-0.537864827431759],"center_1":[-3.116843199368397,0.5989493445276797,-0.537864827431759],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_-1"},{"kind":"MovingSphere","center_0":[-3.5373610892574465,0.2,0.7635845907543717],"center_1":[-3.5373610892574465,0.4381181854033512,0.7635845907543717],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_0"},{"kind":"MovingSphere","center_0":[-3.88746912704057,0.2,1.286847546307901],"center_1":[-3.88746912704057,0.27329269889049496,1.286847546307901],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_1"},{"kind":"MovingSphere","center_0":[-3.382144972051774,0.2,2.598505631094233],"center_1":[-3.382144972051774,0.2956358377946337,2.598505631094233],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_2"},{"kind":"MovingSphere","center_0":[-3.3540409059394225,0.2,3.59899947087906],"center_1":[-3.3540409059394225,0.46776183107937824,3.59899947087906],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_3"},{"kind":"Sphere","center":[-3.6400284417219506,0.2,4.4021345727574435],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[-3.3101806924704205,0.2,5.716947313458319],"center_1":[-3.3101806924704205,0.29564924081206606,5.716947313458319],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_5"},{"kind":"MovingSphere","center_0":[-3.1684200937373546,0.2,6.187359114402975],"center_1":[-3.1684200937373546,0.6531488964249226,6.187359114402975],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_6"},{"kind":"MovingSphere","center_0":[-3.9790564396081693,0.2,7.766919632985947],"center_1":[-3.9790564396081693,0.6947425687626447,7.766919632985947],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_7"},{"kind":"Sphere","center":[-3.5972259352863194,0.2,8.665660240186455],"radius":0.2,"material":"sphere material -4_8"},{"kind":"MovingSphere","center_0":[-3.4176289100515973,0.2,9.624510924551945],"center_1":[-3.4176289100515973,0.6773697983666642,9.624510924551945],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_9"},{"kind":"MovingSphere","center_0":[-3.547803219502212,0.2,10.64063266483783],"center_1":[-3.547803219502212,0.467397127417951,10.64063266483783],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -4_10"},{"kind":"MovingSphere","center_0":[-2.749875815205905,0.2,-10.809746100450768],"center_1":[-2.749875815205905,0.22149138336787982,-10.809746100450768],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_-11"},{"kind":"MovingSphere","center_0":[-2.382103733082653,0.2,-9.75700935812454],"center_1":[-2.382103733082653,0.29716357313153147,-9.75700935812454],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_-10"},{"kind":"MovingSphere","center_0":[-2.635854456949334,0.2,-8.664128443691846],"center_1":[-2.635854456949334,0.5143615574319784,-8.664128443691846],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_-9"},{"kind":"Sphere","center":[-2.456639179077805,0.2,-7.613735385369386],"radius":0.2,"material":"sphere material -3_-8"},{"kind":"Sphere","center":[-2.9174942732435087,0.2,-6.78513094413519],"radius":0.2,"material":"sphere material -3_-7"},{"kind":"MovingSphere","center_0":[-2.925648855569385,0.2,-5.40420787673649],"center_1":[-2.925648855569385,0.28272193195940226,-5.40420787673649],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_-6"},{"kind":"Sphere","center":[-2.8855002594789076,0.2,-4.64938542981127],"radius":0.2,"material":"sphere material -3_-5"},{"kind":"MovingSphere","center_0":[-2.517798252316511,0.2,-3.8967459831030973],"center_1":[-2.517798252316511,0.4053398318428019,-3.8967459831030973],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_-4"},{"kind":"MovingSphere","center_0":[-2.933458699362047,0.2,-2.628340150722796],"center_1":[-2.933458699362047,0.22316621233634532,-2.628340150722796],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_-3"},{"kind":"MovingSphere","center_0":[-2.959009464086056,0.2,-1.1597890568934814],"center_1":[-2.959009464086056,0.6230356677601965,-1.1597890568934814],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_-2"},{"kind":"MovingSphere","center_0":[-2.546866756455377,0.2,-0.5824363441861716],"center_1":[-2.546866756455377,0.5634693248269802,-0.5824363441861716],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_-1"},{"kind":"Sphere","center":[-2.8474214139983887,0.2,0.4742091105389397],"radius":0.2,"material":"sphere material -3_0"},{"kind":"MovingSphere","center_0":[-2.6672896584318417,0.2,1.796414456418471],"center_1":[-2.6672896584318417,0.4473241708503302,1.796414456418471],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_1"},{"kind":"MovingSphere","center_0":[-2.3669218994562806,0.2,2.548862731201024],"center_1":[-2.3669218994562806,0.5810353138903983,2.548862731201024],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_2"},{"kind":"MovingSphere","center_0":[-2.21014446914369,0.2,3.74087593273087],"center_1":[-2.21014446914369,0.3260998700720327,3.74087593273087],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_3"},{"kind":"MovingSphere","center_0":[-2.717672735191459,0.2,4.197911370856576],"center_1":[-2.717672735191459,0.23021014548630286,4.197911370856576],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_4"},{"kind":"MovingSphere","center_0":[-2.7546994103316367,0.2,5.706721944458868],"center_1":[-2.7546994103316367,0.4872117428423553,5.706721944458868],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_5"},{"kind":"Sphere","center":[-2.118858545170171,0.2,6.781093900563326],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[-2.7979184655692144,0.2,7.364554135831861],"center_1":[-2.7979184655692144,0.4230717158908888,7.364554135831861],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_7"},{"kind":"Sphere","center":[-2.790255383758016,0.2,8.855782391791243],"radius":0.2,"material":"sphere material -3_8"},{"kind":"MovingSphere","center_0":[-2.445994366685227,0.2,9.890885548256884],"center_1":[-2.445994366685227,0.2139794623552294,9.890885548256884],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_9"},{"kind":"MovingSphere","center_0":[-2.9148037393944874,0.2,10.556340933284224],"center_1":[-2.9148037393944874,0.2575268923173803,10.556340933284224],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -3_10"},{"kind":"MovingSphere","center_0":[-1.3072852861306716,0.2,-10.114870918193533],"center_1":[-1.3072852861306716,0.6698325390274367,-10.114870918193533],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_-11"},{"kind":"MovingSphere","center_0":[-1.5039360458204785,0.2,-9.485352080224184],"center_1":[-1.5039360458204785,0.44411059908890055,-9.485352080224184],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_-10"},{"kind":"MovingSphere","center_0":[-1.9522413274828576,0.2,-8.946540528080012],"center_1":[-1.9522413274828576,0.3679992015736671,-8.946540528080012],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_-9"},{"kind":"MovingSphere","center_0":[-1.4059186226537048,0.2,-7.948320418298326],"center_1":[-1.4059186226537048,0.43074917422547937,-7.948320418298326],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_-8"},{"kind":"MovingSphere","center_0":[-1.9356832258241912,0.2,-6.712202734884302],"center_1":[-1.9356832258241912,0.6132206797521065,-6.712202734884302],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_-7"},{"kind":"Sphere","center":[-1.7202680845288176,0.2,-5.869646507796339],"radius":0.2,"material":"sphere material -2_-6"},{"kind":"MovingSphere","center_0":[-1.105958445142271,0.2,-4.204863589007452],"center_1":[-1.105958445142271,0.32717586750758104,-4.204863589007452],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_-5"},{"kind":"MovingSphere","center_0":[-1.8888333805471225,0.2,-3.6811028471362843],"center_1":[-1.8888333805471225,0.3049255126317169,-3.6811028471362843],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_-4"},{"kind":"MovingSphere","center_0":[-1.8805662241961985,0.2,-2.7390319273813404],"center_1":[-1.8805662241961985,0.6638935652207114,-2.7390319273813404],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_-3"},{"kind":"MovingSphere","center_0":[-1.8594304702199704,0.2,-1.420891579112831],"center_1":[-1.8594304702199704,0.30895487238215286,-1.420891579112831],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_-2"},{"kind":"MovingSphere","center_0":[-1.5233421623915684,0.2,-0.319122639540932],"center_1":[-1.5233421623915684,0.6821383596265036,-0.319122639540932],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_-1"},{"kind":"MovingSphere","center_0":[-1.5582659741654517,0.2,0.8458434704765331],"center_1":[-1.5582659741654517,0.6027811872796951,0.8458434704765331],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_0"},{"kind":"MovingSphere","center_0":[-1.8150346101177948,0.2,1.3600646512252408],"center_1":[-1.8150346101177948,0.5435568485371667,1.3600646512252408],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_1"},{"kind":"Sphere","center":[-1.3357786429253187,0.2,2.7896987188224305],"radius":0.2,"material":"sphere material -2_2"},{"kind":"MovingSphere","center_0":[-1.613234301762661,0.2,3.031760140015087],"center_1":[-1.613234301762661,0.2586466076404253,3.031760140015087],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_3"},{"kind":"MovingSphere","center_0":[-1.14065386454778,0.2,4.382074661860482],"center_1":[-1.14065386454778,0.3064417680981703,4.382074661860482],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_4"},{"kind":"Sphere","center":[-1.1482496074120019,0.2,5.640107203338497],"radius":0.2,"material":"sphere material -2_5"},{"kind":"MovingSphere","center_0":[-1.5623428734719254,0.2,6.7326345749738605],"center_1":[-1.5623428734719254,0.6320266232129093,6.7326345749738605],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_6"},{"kind":"MovingSphere","center_0":[-1.7129407355967532,0.2,7.344098552728925],"center_1":[-1.7129407355967532,0.4867283787415448,7.344098552728925],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_7"},{"kind":"MovingSphere","center_0":[-1.8412824481803376,0.2,8.070809061071714],"center_1":[-1.8412824481803376,0.38188669947410175,8.070809061071714],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_8"},{"kind":"MovingSphere","center_0":[-1.3839588855696823,0.2,9.42124215361181],"center_1":[-1.3839588855696823,0.2468215429290908,9.42124215361181],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -2_9"},{"kind":"Sphere","center":[-1.5124467728950228,0.2,10.753439990434408],"radius":0.2,"material":"sphere material -2_10"},{"kind":"MovingSphere","center_0":[-0.5647304281712942,0.2,-10.935867978652864],"center_1":[-0.5647304281712942,0.6010168872703592,-10.935867978652864],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_-11"},{"kind":"MovingSphere","center_0":[-0.19512444664675044,0.2,-9.993199939017913],"center_1":[-0.19512444664675044,0.324469007673894,-9.993199939017913],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_-10"},{"kind":"MovingSphere","center_0":[-0.6956486633512097,0.2,-8.168288315861918],"center_1":[-0.6956486633512097,0.5817038979636195,-8.168288315861918],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_-9"},{"kind":"Sphere","center":[-0.9956218708194219,0.2,-7.617011699514853],"radius":0.2,"material":"sphere material -1_-8"},{"kind":"Sphere","center":[-0.2557434603744023,0.2,-6.4433206508184275],"radius":0.2,"material":"sphere material -1_-7"},{"kind":"MovingSphere","center_0":[-0.45528616884592743,0.2,-5.399988052231015],"center_1":[-0.45528616884592743,0.32793530956840905,-5.399988052231015],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_-6"},{"kind":"MovingSphere","center_0":[-0.4461573191626449,0.2,-4.7277769328598955],"center_1":[-0.4461573191626449,0.6103330232537216,-4.7277769328598955],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_-5"},{"kind":"Sphere","center":[-0.872484550808452,0.2,-3.3234853887643085],"radius":0.2,"material":"sphere material -1_-4"},{"kind":"MovingSphere","center_0":[-0.757216026530551,0.2,-2.918023830056655],"center_1":[-0.757216026530551,0.4406780968263347,-2.918023830056655],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_-3"},{"kind":"MovingSphere","center_0":[-0.4233693175186253,0.2,-1.4506376312601383],"center_1":[-0.4233693175186253,0.43592309292107073,-1.4506376312601383],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_-2"},{"kind":"MovingSphere","center_0":[-0.33421976867760717,0.2,-0.1478684129582586],"center_1":[-0.33421976867760717,0.22123096867506925,-0.1478684129582586],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_-1"},{"kind":"MovingSphere","center_0":[-0.6052340869930027,0.2,0.037955295538998325],"center_1":[-0.6052340869930027,0.6558052718932144,0.037955295538998325],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_0"},{"kind":"Sphere","center":[-0.7055079056103606,0.2,1.0696807565742465],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[-0.9505318341716942,0.2,2.3855467081188166],"center_1":[-0.9505318341716942,0.3857026946611937,2.3855467081188166],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_2"},{"kind":"MovingSphere","center_0":[-0.6535119957472285,0.2,3.6506485807932365],"center_1":[-0.6535119957472285,0.323531563617428,3.6506485807932365],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_3"},{"kind":"MovingSphere","center_0":[-0.7571515906471008,0.2,4.469006509324681],"center_1":[-0.7571515906471008,0.40054397702793504,4.469006509324681],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_4"},{"kind":"MovingSphere","center_0":[-0.950292246946749,0.2,5.803543185848838],"center_1":[-0.950292246946749,0.42591024973666997,5.803543185848838],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_5"},{"kind":"MovingSphere","center_0":[-0.8292593577325146,0.2,6.4331822451791325],"center_1":[-0.8292593577325146,0.5326695087403737,6.4331822451791325],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_6"},{"kind":"Sphere","center":[-0.7648649791765246,0.2,7.872141229320803],"radius":0.2,"material":"sphere material -1_7"},{"kind":"MovingSphere","center_0":[-0.7265300711387273,0.2,8.691665166040215],"center_1":[-0.7265300711387273,0.44058281678413386,8.691665166040215],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_8"},{"kind":"Sphere","center":[-0.6915186065168746,0.2,9.23900861572675],"radius":0.2,"material":"sphere material -1_9"},{"kind":"MovingSphere","center_0":[-0.26508109886377906,0.2,10.096311229144554],"center_1":[-0.26508109886377906,0.44260953951811816,10.096311229144554],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material -1_10"},{"kind":"MovingSphere","center_0":[0.07914817002260333,0.2,-10.819218130570482],"center_1":[0.07914817002260333,0.2726887218010809,-10.819218130570482],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_-11"},{"kind":"Sphere","center":[0.6155641194914958,0.2,-9.352413579256224],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[0.7921159734268838,0.2,-8.772117394162422],"center_1":[0.7921159734268838,0.3017140582512264,-8.772117394162422],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_-9"},{"kind":"MovingSphere","center_0":[0.6700598834558316,0.2,-7.78096632727412],"center_1":[0.6700598834558316,0.6622410586416954,-7.78096632727412],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_-8"},{"kind":"MovingSphere","center_0":[0.5330369892356772,0.2,-6.74420787102795],"center_1":[0.5330369892356772,0.34594106713725853,-6.74420787102795],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_-7"},{"kind":"MovingSphere","center_0":[0.26023516449156797,0.2,-5.973285008600274],"center_1":[0.26023516449156797,0.37683133023213705,-5.973285008600274],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_-6"},{"kind":"MovingSphere","center_0":[0.009011519332976503,0.2,-4.453227218207177],"center_1":[0.009011519332976503,0.48697752945510825,-4.453227218207177],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_-5"},{"kind":"MovingSphere","center_0":[0.32299722091444105,0.2,-3.95769203370213],"center_1":[0.32299722091444105,0.39461920190832295,-3.95769203370213],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_-4"},{"kind":"MovingSphere","center_0":[0.7274829511324228,0.2,-2.865169881262758],"center_1":[0.7274829511324228,0.22275039451097495,-2.865169881262758],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_-3"},{"kind":"MovingSphere","center_0":[0.011414908269588176,0.2,-1.5502969891626353],"center_1":[0.011414908269588176,0.4257587598228226,-1.5502969891626353],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_-2"},{"kind":"MovingSphere","center_0":[0.16530126685779586,0.2,-0.2856934328197004],"center_1":[0.16530126685779586,0.4803110767235316,-0.2856934328197004],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_-1"},{"kind":"MovingSphere","center_0":[0.7542327407123688,0.2,0.8972579552546864],"center_1":[0.7542327407123688,0.4627083330112503,0.8972579552546864],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_0"},{"kind":"MovingSphere","center_0":[0.03642634641559963,0.2,1.0178610089977993],"center_1":[0.03642634641559963,0.4693188787463514,1.0178610089977993],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_1"},{"kind":"MovingSphere","center_0":[0.7662154212599422,0.2,2.352311341405702],"center_1":[0.7662154212599422,0.2032880482247516,2.352311341405702],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_2"},{"kind":"MovingSphere","center_0":[0.7802145239219976,0.2,3.53178182947812],"center_1":[0.7802145239219976,0.6210146895372317,3.53178182947812],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_3"},{"kind":"MovingSphere","center_0":[0.5990513490152578,0.2,4.455300697922772],"center_1":[0.5990513490152578,0.3855401402991789,4.455300697922772],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_4"},{"kind":"MovingSphere","center_0":[0.7763773957615571,0.2,5.079432074720252],"center_1":[0.7763773957615571,0.6329207043101004,5.079432074720252],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_5"},{"kind":"MovingSphere","center_0":[0.832425399706949,0.2,6.009091164771407],"center_1":[0.832425399706949,0.5668795162077973,6.009091164771407],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_6"},{"kind":"Sphere","center":[0.1364321064250207,0.2,7.005070754957076],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[0.3476133169686387,0.2,8.19965353197101],"center_1":[0.3476133169686387,0.4472006391270587,8.19965353197101],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_8"},{"kind":"MovingSphere","center_0":[0.3919785925935804,0.2,9.09792339261888],"center_1":[0.3919785925935804,0.5817818730832975,9.09792339261888],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_9"},{"kind":"MovingSphere","center_0":[0.4185097415774502,0.2,10.154609332106226],"center_1":[0.4185097415774502,0.5822351882385091,10.154609332106226],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 0_10"},{"kind":"MovingSphere","center_0":[1.4501546866833612,0.2,-10.462137100862083],"center_1":[1.4501546866833612,0.6769935865264365,-10.462137100862083],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_-11"},{"kind":"MovingSphere","center_0":[1.8025468053237284,0.2,-9.516356181307001],"center_1":[1.8025468053237284,0.29478596633013826,-9.516356181307001],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_-10"},{"kind":"MovingSphere","center_0":[1.1273465763110266,0.2,-8.112987167944775],"center_1":[1.1273465763110266,0.3077025999958019,-8.112987167944775],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_-9"},{"kind":"Sphere","center":[1.0043255331753664,0.2,-7.338779641312669],"radius":0.2,"material":"sphere material 1_-8"},{"kind":"MovingSphere","center_0":[1.1746224472551494,0.2,-6.167637040135087],"center_1":[1.1746224472551494,0.4219280106884436,-6.167637040135087],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_-7"},{"kind":"MovingSphere","center_0":[1.0048435331913663,0.2,-5.240097177367239],"center_1":[1.0048435331913663,0.37306425282109273,-5.240097177367239],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_-6"},{"kind":"MovingSphere","center_0":[1.5463790207604502,0.2,-4.986625668341436],"center_1":[1.5463790207604502,0.4103002874984982,-4.986625668341436],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_-5"},{"kind":"MovingSphere","center_0":[1.8407928248255798,0.2,-3.4290623165632623],"center_1":[1.8407928248255798,0.39497152474253944,-3.4290623165632623],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_-4"},{"kind":"MovingSphere","center_0":[1.4427424693129116,0.2,-2.9790876487399007],"center_1":[1.4427424693129116,0.31725261949823486,-2.9790876487399007],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_-3"},{"kind":"MovingSphere","center_0":[1.673147479872056,0.2,-1.2923881238521377],"center_1":[1.673147479872056,0.20289313587467822,-1.2923881238521377],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_-2"},{"kind":"MovingSphere","center_0":[1.451024174847779,0.2,-0.559746022654487],"center_1":[1.451024174847779,0.37341891996337423,-0.559746022654487],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_-1"},{"kind":"MovingSphere","center_0":[1.6297023117962997,0.2,0.7640198821317973],"center_1":[1.6297023117962997,0.45993818320597674,0.7640198821317973],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_0"},{"kind":"MovingSphere","center_0":[1.521806875349636,0.2,1.2620638747273039],"center_1":[1.521806875349636,0.6429644643077626,1.2620638747273039],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_1"},{"kind":"Sphere","center":[1.6917855848204215,0.2,2.187269812936084],"radius":0.2,"material":"sphere material 1_2"},{"kind":"MovingSphere","center_0":[1.295875077894383,0.2,3.812379757712581],"center_1":[1.295875077894383,0.4500231265473467,3.812379757712581],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_3"},{"kind":"MovingSphere","center_0":[1.3649552374367842,0.2,4.019396646684146],"center_1":[1.3649552374367842,0.6450342373783435,4.019396646684146],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_4"},{"kind":"MovingSphere","center_0":[1.608855023815044,0.2,5.243992885308],"center_1":[1.608855023815044,0.6890690630356375,5.243992885308],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_5"},{"kind":"MovingSphere","center_0":[1.2989413271262589,0.2,6.4485007741405065],"center_1":[1.2989413271262589,0.676916823187607,6.4485007741405065],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_6"},{"kind":"Sphere","center":[1.1593010166603446,0.2,7.66177009774187],"radius":0.2,"material":"sphere material 1_7"},{"kind":"Sphere","center":[1.338183893671302,0.2,8.500997386403293],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[1.8553025393613416,0.2,9.272709817868995],"center_1":[1.8553025393613416,0.32682268912923623,9.272709817868995],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_9"},{"kind":"MovingSphere","center_0":[1.5431472978663918,0.2,10.88849300243377],"center_1":[1.5431472978663918,0.5776980004445205,10.88849300243377],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 1_10"},{"kind":"Sphere","center":[2.1824378561401914,0.2,-10.623507791041972],"radius":0.2,"material":"sphere material 2_-11"},{"kind":"MovingSphere","center_0":[2.227292722448807,0.2,-9.328943412179004],"center_1":[2.227292722448807,0.4076312039680044,-9.328943412179004],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_-10"},{"kind":"MovingSphere","center_0":[2.422208908123165,0.2,-8.329921218600218],"center_1":[2.422208908123165,0.6871447635885577,-8.329921218600218],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_-9"},{"kind":"MovingSphere","center_0":[2.2446301945001084,0.2,-7.724363851940641],"center_1":[2.2446301945001084,0.271729326780297,-7.724363851940641],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_-8"},{"kind":"MovingSphere","center_0":[2.147293517646344,0.2,-6.613807244801695],"center_1":[2.147293517646344,0.3660168821283934,-6.613807244801695],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_-7"},{"kind":"Sphere","center":[2.454245854217141,0.2,-5.866522090337521],"radius":0.2,"material":"sphere material 2_-6"},{"kind":"MovingSphere","center_0":[2.2964133942214175,0.2,-4.745951086355636],"center_1":[2.2964133942214175,0.2846226768815076,-4.745951086355636],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_-5"},{"kind":"MovingSphere","center_0":[2.008679901828466,0.2,-3.2025587384627725],"center_1":[2.008679901828466,0.48115420326836916,-3.2025587384627725],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_-4"},{"kind":"MovingSphere","center_0":[2.148723320267055,0.2,-2.2837707373547698],"center_1":[2.148723320267055,0.5806634451002592,-2.2837707373547698],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_-3"},{"kind":"MovingSphere","center_0":[2.181294619735508,0.2,-1.3252026503042922],"center_1":[2.181294619735508,0.496371650077232,-1.3252026503042922],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_-2"},{"kind":"Sphere","center":[2.206212466711386,0.2,-0.2113123142805814],"radius":0.2,"material":"sphere material 2_-1"},{"kind":"Sphere","center":[2.450096158772852,0.2,0.5906855968385492],"radius":0.2,"material":"sphere material 2_0"},{"kind":"Sphere","center":[2.4562275783941336,0.2,1.0848629985978273],"radius":0.2,"material":"sphere material 2_1"},{"kind":"Sphere","center":[2.6144410851832594,0.2,2.2267379672695444],"radius":0.2,"material":"sphere material 2_2"},{"kind":"MovingSphere","center_0":[2.15264053116829,0.2,3.125860326143801],"center_1":[2.15264053116829,0.690271873614456,3.125860326143801],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_3"},{"kind":"Sphere","center":[2.522765600794834,0.2,4.623190747482229],"radius":0.2,"material":"sphere material 2_4"},{"kind":"MovingSphere","center_0":[2.7674046401737544,0.2,5.564575688089781],"center_1":[2.7674046401737544,0.30364970277657083,5.564575688089781],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_5"},{"kind":"MovingSphere","center_0":[2.1344580138305767,0.2,6.747356492609252],"center_1":[2.1344580138305767,0.6545080288869671,6.747356492609252],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_6"},{"kind":"MovingSphere","center_0":[2.734603961731491,0.2,7.7438976931165255],"center_1":[2.734603961731491,0.432304465293515,7.7438976931165255],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_7"},{"kind":"MovingSphere","center_0":[2.104856153611697,0.2,8.515023380212375],"center_1":[2.104856153611697,0.6917799873407025,8.515023380212375],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_8"},{"kind":"Sphere","center":[2.657017046993327,0.2,9.395551499623569],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[2.519253990112242,0.2,10.547536070833033],"center_1":[2.519253990112242,0.6857312293110704,10.547536070833033],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 2_10"},{"kind":"MovingSphere","center_0":[3.6954128229603556,0.2,-10.486067708162544],"center_1":[3.6954128229603556,0.29347842494600335,-10.486067708162544],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_-11"},{"kind":"MovingSphere","center_0":[3.410302653387138,0.2,-9.668815787292393],"center_1":[3.410302653387138,0.32055306662805133,-9.668815787292393],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_-10"},{"kind":"MovingSphere","center_0":[3.8294789046631337,0.2,-8.598619913438721],"center_1":[3.8294789046631337,0.5585786957056853,-8.598619913438721],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_-9"},{"kind":"MovingSphere","center_0":[3.299714322587245,0.2,-7.235111063995526],"center_1":[3.299714322587245,0.39151324944203,-7.235111063995526],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_-8"},{"kind":"MovingSphere","center_0":[3.414924440602616,0.2,-6.292327825907933],"center_1":[3.414924440602616,0.5196790539639153,-6.292327825907933],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_-7"},{"kind":"MovingSphere","center_0":[3.31089867855397,0.2,-5.764614771684897],"center_1":[3.31089867855397,0.3540320578946406,-5.764614771684897],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_-6"},{"kind":"MovingSphere","center_0":[3.644586594176759,0.2,-4.623201383715371],"center_1":[3.644586594176759,0.5685050229917779,-4.623201383715371],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_-5"},{"kind":"MovingSphere","center_0":[3.158165537230034,0.2,-3.70743308646625],"center_1":[3.158165537230034,0.22515168984795536,-3.70743308646625],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_-4"},{"kind":"MovingSphere","center_0":[3.384257018596283,0.2,-2.2044216228319513],"center_1":[3.384257018596283,0.41505516066448717,-2.2044216228319513],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_-3"},{"kind":"MovingSphere","center_0":[3.8396109432752503,0.2,-1.3423271888407697],"center_1":[3.8396109432752503,0.4132566655229401,-1.3423271888407697],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_-2"},{"kind":"MovingSphere","center_0":[3.4982896315690466,0.2,-0.6670757620157761],"center_1":[3.4982896315690466,0.34021760227186376,-0.6670757620157761],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_-1"},{"kind":"MovingSphere","center_0":[3.618878951677677,0.2,0.547216796027497],"center_1":[3.618878951677677,0.4109070265664701,0.547216796027497],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_0"},{"kind":"MovingSphere","center_0":[3.5022001645688867,0.2,1.6893433154096043],"center_1":[3.5022001645688867,0.20681814843338303,1.6893433154096043],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_1"},{"kind":"MovingSphere","center_0":[3.1648173705340947,0.2,2.1378341182995664],"center_1":[3.1648173705340947,0.6842160967472746,2.1378341182995664],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_2"},{"kind":"MovingSphere","center_0":[3.2429915759723356,0.2,3.1694951594416976],"center_1":[3.2429915759723356,0.6816978099217552,3.1694951594416976],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_3"},{"kind":"MovingSphere","center_0":[3.8482387423489315,0.2,4.750494232630494],"center_1":[3.8482387423489315,0.2910040923857476,4.750494232630494],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_4"},{"kind":"Sphere","center":[3.0105398768653435,0.2,5.791803018648682],"radius":0.2,"material":"sphere material 3_5"},{"kind":"MovingSphere","center_0":[3.8855182263643995,0.2,6.285945695615164],"center_1":[3.8855182263643995,0.3985735949989027,6.285945695615164],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_6"},{"kind":"MovingSphere","center_0":[3.3056850027401565,0.2,7.4023561007674505],"center_1":[3.3056850027401565,0.23963107899938701,7.4023561007674505],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_7"},{"kind":"MovingSphere","center_0":[3.2865864238600873,0.2,8.069598075526686],"center_1":[3.2865864238600873,0.25230213330968904,8.069598075526686],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_8"},{"kind":"MovingSphere","center_0":[3.774069246388357,0.2,9.824648030434693],"center_1":[3.774069246388357,0.531302825571061,9.824648030434693],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 3_9"},{"kind":"Sphere","center":[3.8854784734321175,0.2,10.079618391054321],"radius":0.2,"material":"sphere material 3_10"},{"kind":"Sphere","center":[4.71529813837528,0.2,-10.44365357646319],"radius":0.2,"material":"sphere material 4_-11"},{"kind":"MovingSphere","center_0":[4.317871269702375,0.2,-9.788629672415743],"center_1":[4.317871269702375,0.6162787903503124,-9.788629672415743],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_-10"},{"kind":"MovingSphere","center_0":[4.752391350791781,0.2,-8.337063314525],"center_1":[4.752391350791781,0.34490939457937947,-8.337063314525],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_-9"},{"kind":"MovingSphere","center_0":[4.272474728010121,0.2,-7.35335025665683],"center_1":[4.272474728010121,0.6248074125155219,-7.35335025665683],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_-8"},{"kind":"MovingSphere","center_0":[4.641336235972439,0.2,-6.310804901764],"center_1":[4.641336235972439,0.3248545188582896,-6.310804901764],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_-7"},{"kind":"Sphere","center":[4.839411689539832,0.2,-5.111286115638808],"radius":0.2,"material":"sphere material 4_-6"},{"kind":"MovingSphere","center_0":[4.1729831215935835,0.2,-4.587582058476198],"center_1":[4.1729831215935835,0.42119574738464555,-4.587582058476198],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_-5"},{"kind":"MovingSphere","center_0":[4.458339483569167,0.2,-3.2377916443056374],"center_1":[4.458339483569167,0.5630594564994749,-3.2377916443056374],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_-4"},{"kind":"MovingSphere","center_0":[4.743160871104921,0.2,-2.776939681393501],"center_1":[4.743160871104921,0.2816619538233814,-2.776939681393501],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_-3"},{"kind":"MovingSphere","center_0":[4.5450349431917445,0.2,-1.303787783137591],"center_1":[4.5450349431917445,0.6425354563687768,-1.303787783137591],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_-2"},{"kind":"Sphere","center":[4.5862265735763135,0.2,-0.3235602357837608],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[4.753497009030874,0.2,0.11580735467198226],"center_1":[4.753497009030874,0.41652024518257397,0.11580735467198226],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_0"},{"kind":"MovingSphere","center_0":[4.737418624713808,0.2,1.2770195796897594],"center_1":[4.737418624713808,0.4292221033017059,1.2770195796897594],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_1"},{"kind":"MovingSphere","center_0":[4.355438456469454,0.2,2.4816156761652843],"center_1":[4.355438456469454,0.617125853795274,2.4816156761652843],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_2"},{"kind":"MovingSphere","center_0":[4.0930506516528995,0.2,3.6341459396194575],"center_1":[4.0930506516528995,0.3658824856291443,3.6341459396194575],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_3"},{"kind":"MovingSphere","center_0":[4.05334345532155,0.2,4.076994450650518],"center_1":[4.05334345532155,0.34671855942102253,4.076994450650518],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_4"},{"kind":"MovingSphere","center_0":[4.343010108198609,0.2,5.0705264000293315],"center_1":[4.343010108198609,0.5264593190430356,5.0705264000293315],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_5"},{"kind":"MovingSphere","center_0":[4.078992338501009,0.2,6.32905544707886],"center_1":[4.078992338501009,0.5770677252745664,6.32905544707886],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_6"},{"kind":"MovingSphere","center_0":[4.6079785093272285,0.2,7.457736689876915],"center_1":[4.6079785093272285,0.40784045063740265,7.457736689876915],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_7"},{"kind":"MovingSphere","center_0":[4.776144405037133,0.2,8.477735946644854],"center_1":[4.776144405037133,0.6351859677376197,8.477735946644854],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_8"},{"kind":"MovingSphere","center_0":[4.6566921196848075,0.2,9.434514699896154],"center_1":[4.6566921196848075,0.3418232627578341,9.434514699896154],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_9"},{"kind":"MovingSphere","center_0":[4.10737483738952,0.2,10.211969125149318],"center_1":[4.10737483738952,0.27243143172568945,10.211969125149318],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 4_10"},{"kind":"MovingSphere","center_0":[5.744022090569131,0.2,-10.539933654108335],"center_1":[5.744022090569131,0.28371452754670884,-10.539933654108335],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_-11"},{"kind":"MovingSphere","center_0":[5.495051026957363,0.2,-9.291572177995478],"center_1":[5.495051026957363,0.47183677347881386,-9.291572177995478],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_-10"},{"kind":"MovingSphere","center_0":[5.636854764871597,0.2,-8.70208506145621],"center_1":[5.636854764871597,0.2697737710189035,-8.70208506145621],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_-9"},{"kind":"MovingSphere","center_0":[5.017085032260871,0.2,-7.416624093704846],"center_1":[5.017085032260871,0.48240553718578955,-7.416624093704846],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_-8"},{"kind":"Sphere","center":[5.2289607864953185,0.2,-6.605910979836846],"radius":0.2,"material":"sphere material 5_-7"},{"kind":"MovingSphere","center_0":[5.119696621766204,0.2,-5.412088944540782],"center_1":[5.119696621766204,0.4365151538931927,-5.412088944540782],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_-6"},{"kind":"MovingSphere","center_0":[5.8676991288152625,0.2,-4.920672769547153],"center_1":[5.8676991288152625,0.31793555710003235,-4.920672769547153],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_-5"},{"kind":"MovingSphere","center_0":[5.0483112110934,0.2,-3.40179469780034],"center_1":[5.0483112110934,0.6794030572063914,-3.40179469780034],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_-4"},{"kind":"MovingSphere","center_0":[5.380794920389902,0.2,-2.4966874892402258],"center_1":[5.380794920389902,0.4183026030494305,-2.4966874892402258],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_-3"},{"kind":"MovingSphere","center_0":[5.396645125532905,0.2,-1.5195047444924228],"center_1":[5.396645125532905,0.6162864445565504,-1.5195047444924228],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_-2"},{"kind":"MovingSphere","center_0":[5.5143214076483815,0.2,-0.4949849282820007],"center_1":[5.5143214076483815,0.6971456589036256,-0.4949849282820007],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_-1"},{"kind":"MovingSphere","center_0":[5.303217423209986,0.2,0.5381424705456685],"center_1":[5.303217423209986,0.31731874531602516,0.5381424705456685],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_0"},{"kind":"MovingSphere","center_0":[5.483692085940541,0.2,1.1171164158283422],"center_1":[5.483692085940541,0.6847343653131586,1.1171164158283422],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_1"},{"kind":"Sphere","center":[5.095269287220547,0.2,2.372259653065063],"radius":0.2,"material":"sphere material 5_2"},{"kind":"MovingSphere","center_0":[5.439646347443466,0.2,3.866515792075354],"center_1":[5.439646347443466,0.5128206979228,3.866515792075354],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_3"},{"kind":"MovingSphere","center_0":[5.052309276545513,0.2,4.733619541849156],"center_1":[5.052309276545513,0.28002351749902726,4.733619541849156],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_4"},{"kind":"MovingSphere","center_0":[5.377485219954525,0.2,5.833986064695351],"center_1":[5.377485219954525,0.4060347399272534,5.833986064695351],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_5"},{"kind":"Sphere","center":[5.523025717979418,0.2,6.62638752189057],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[5.738647679308342,0.2,7.386157471612518],"center_1":[5.738647679308342,0.30389272660946337,7.386157471612518],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_7"},{"kind":"Sphere","center":[5.498862924535833,0.2,8.633955224237669],"radius":0.2,"material":"sphere material 5_8"},{"kind":"MovingSphere","center_0":[5.4054761495294725,0.2,9.627572813117945],"center_1":[5.4054761495294725,0.42412934290146237,9.627572813117945],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_9"},{"kind":"MovingSphere","center_0":[5.704435653035507,0.2,10.829988734339333],"center_1":[5.704435653035507,0.5362952066089965,10.829988734339333],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 5_10"},{"kind":"MovingSphere","center_0":[6.434823366752811,0.2,-10.44064883723656],"center_1":[6.434823366752811,0.2621699626869775,-10.44064883723656],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_-11"},{"kind":"MovingSphere","center_0":[6.7387921394338095,0.2,-9.558373243030893],"center_1":[6.7387921394338095,0.6767705917254905,-9.558373243030893],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_-10"},{"kind":"MovingSphere","center_0":[6.091873489643308,0.2,-8.748586538239909],"center_1":[6.091873489643308,0.22511122506750508,-8.748586538239909],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_-9"},{"kind":"MovingSphere","center_0":[6.04729067214069,0.2,-7.416397166588974],"center_1":[6.04729067214069,0.5857061462442033,-7.416397166588974],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_-8"},{"kind":"MovingSphere","center_0":[6.509494091053774,0.2,-6.92187649934663],"center_1":[6.509494091053774,0.5095666026278773,-6.92187649934663],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_-7"},{"kind":"MovingSphere","center_0":[6.3629365052020335,0.2,-5.524598789619997],"center_1":[6.3629365052020335,0.2133445783663141,-5.524598789619997],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_-6"},{"kind":"MovingSphere","center_0":[6.354643083194438,0.2,-4.406031497396081],"center_1":[6.354643083194438,0.24729496132353607,-4.406031497396081],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_-5"},{"kind":"MovingSphere","center_0":[6.0029849049370245,0.2,-3.9574116435741007],"center_1":[6.0029849049370245,0.3153385072883714,-3.9574116435741007],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_-4"},{"kind":"MovingSphere","center_0":[6.538422786391875,0.2,-2.637370461425101],"center_1":[6.538422786391875,0.37523634600762207,-2.637370461425101],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_-3"},{"kind":"MovingSphere","center_0":[6.631068815061444,0.2,-1.2361263800438116],"center_1":[6.631068815061444,0.20024491121827676,-1.2361263800438116],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_-2"},{"kind":"MovingSphere","center_0":[6.154196964141476,0.2,-0.6130990586933155],"center_1":[6.154196964141476,0.2925634578385798,-0.6130990586933155],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_-1"},{"kind":"MovingSphere","center_0":[6.198524601911828,0.2,0.7605830201214918],"center_1":[6.198524601911828,0.630845293445742,0.7605830201214918],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_0"},{"kind":"MovingSphere","center_0":[6.637056444188146,0.2,1.2851866114549453],"center_1":[6.637056444188146,0.5895607935078262,1.2851866114549453],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_1"},{"kind":"MovingSphere","center_0":[6.550179781310861,0.2,2.736116296279957],"center_1":[6.550179781310861,0.608206563561223,2.736116296279957],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_2"},{"kind":"Sphere","center":[6.453004688649295,0.2,3.535545188786518],"radius":0.2,"material":"sphere material 6_3"},{"kind":"MovingSphere","center_0":[6.254112837447289,0.2,4.719737716961317],"center_1":[6.254112837447289,0.28814641133881774,4.719737716961317],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_4"},{"kind":"Sphere","center":[6.329272117191794,0.2,5.025229042779455],"radius":0.2,"material":"sphere material 6_5"},{"kind":"Sphere","center":[6.833472727180823,0.2,6.042382775134944],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[6.622744226848688,0.2,7.464093229920154],"center_1":[6.622744226848688,0.37456810622599274,7.464093229920154],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_7"},{"kind":"MovingSphere","center_0":[6.605087446912431,0.2,8.233088884273307],"center_1":[6.605087446912431,0.523817867039744,8.233088884273307],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_8"},{"kind":"Sphere","center":[6.48859902432954,0.2,9.826979832405012],"radius":0.2,"material":"sphere material 6_9"},{"kind":"MovingSphere","center_0":[6.159960752061937,0.2,10.25563621719109],"center_1":[6.159960752061937,0.23924344545951443,10.25563621719109],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 6_10"},{"kind":"MovingSphere","center_0":[7.271133009322166,0.2,-10.610351879954823],"center_1":[7.271133009322166,0.4864808477893496,-10.610351879954823],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_-11"},{"kind":"MovingSphere","center_0":[7.470636822287056,0.2,-9.838136237775391],"center_1":[7.470636822287056,0.3413847618556401,-9.838136237775391],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_-10"},{"kind":"MovingSphere","center_0":[7.299976476377376,0.2,-8.656026622376183],"center_1":[7.299976476377376,0.37050607544497,-8.656026622376183],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_-9"},{"kind":"Sphere","center":[7.274496288032886,0.2,-7.767088903919169],"radius":0.2,"material":"sphere material 7_-8"},{"kind":"MovingSphere","center_0":[7.618946739820805,0.2,-6.633861694686977],"center_1":[7.618946739820805,0.24018927296301923,-6.633861694686977],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_-7"},{"kind":"MovingSphere","center_0":[7.5398010026226885,0.2,-5.19516467403061],"center_1":[7.5398010026226885,0.27405772761501274,-5.19516467403061],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_-6"},{"kind":"MovingSphere","center_0":[7.136681188191979,0.2,-4.309336447574032],"center_1":[7.136681188191979,0.6098356180717321,-4.309336447574032],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_-5"},{"kind":"Sphere","center":[7.563752552361269,0.2,-3.982708606746058],"radius":0.2,"material":"sphere material 7_-4"},{"kind":"MovingSphere","center_0":[7.247111415715641,0.2,-2.448625841558838],"center_1":[7.247111415715641,0.6520699613530405,-2.448625841558838],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_-3"},{"kind":"MovingSphere","center_0":[7.497338252612072,0.2,-1.8521038854688625],"center_1":[7.497338252612072,0.24827527667939214,-1.8521038854688625],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_-2"},{"kind":"Sphere","center":[7.120431487343017,0.2,-0.5905646842423748],"radius":0.2,"material":"sphere material 7_-1"},{"kind":"MovingSphere","center_0":[7.104785059594866,0.2,0.39436388174351805],"center_1":[7.104785059594866,0.47556745935088723,0.39436388174351805],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_0"},{"kind":"MovingSphere","center_0":[7.679453530269459,0.2,1.0317787508961918],"center_1":[7.679453530269459,0.49731032627351407,1.0317787508961918],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_1"},{"kind":"MovingSphere","center_0":[7.463084016516984,0.2,2.324396132836109],"center_1":[7.463084016516984,0.29261271338586564,2.324396132836109],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_2"},{"kind":"MovingSphere","center_0":[7.798334907696776,0.2,3.779801561582551],"center_1":[7.798334907696776,0.6467856998871964,3.779801561582551],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_3"},{"kind":"MovingSphere","center_0":[7.022840238725077,0.2,4.658684248266704],"center_1":[7.022840238725077,0.6305164967010037,4.658684248266704],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_4"},{"kind":"Sphere","center":[7.157100099200616,0.2,5.183173519350826],"radius":0.2,"material":"sphere material 7_5"},{"kind":"MovingSphere","center_0":[7.644340268490587,0.2,6.200425692291386],"center_1":[7.644340268490587,0.5878723127576986,6.200425692291386],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_6"},{"kind":"MovingSphere","center_0":[7.085007689876349,0.2,7.491302407044216],"center_1":[7.085007689876349,0.5481610559938519,7.491302407044216],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_7"},{"kind":"Sphere","center":[7.223664830908609,0.2,8.345086843663116],"radius":0.2,"material":"sphere material 7_8"},{"kind":"Sphere","center":[7.836031448104596,0.2,9.460957748125514],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[7.573621981041996,0.2,10.529410924291467],"center_1":[7.573621981041996,0.2290196480495747,10.529410924291467],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 7_10"},{"kind":"MovingSphere","center_0":[8.25577378018785,0.2,-10.656568131836567],"center_1":[8.25577378018785,0.556651164272882,-10.656568131836567],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_-11"},{"kind":"MovingSphere","center_0":[8.324556174613342,0.2,-9.775407130460522],"center_1":[8.324556174613342,0.3789467774719307,-9.775407130460522],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_-10"},{"kind":"MovingSphere","center_0":[8.121714333402716,0.2,-8.816765789520414],"center_1":[8.121714333402716,0.6577071261208685,-8.816765789520414],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_-9"},{"kind":"MovingSphere","center_0":[8.858728924222115,0.2,-7.379183849315687],"center_1":[8.858728924222115,0.3726971737321427,-7.379183849315687],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_-8"},{"kind":"MovingSphere","center_0":[8.606408834203844,0.2,-6.432197377321286],"center_1":[8.606408834203844,0.4455310040524629,-6.432197377321286],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_-7"},{"kind":"MovingSphere","center_0":[8.629323143054949,0.2,-5.272160118336191],"center_1":[8.629323143054949,0.4652674671978982,-5.272160118336191],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_-6"},{"kind":"MovingSphere","center_0":[8.10622458684205,0.2,-4.574609151142358],"center_1":[8.10622458684205,0.6683608570803801,-4.574609151142358],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_-5"},{"kind":"MovingSphere","center_0":[8.10640735148469,0.2,-3.7271066081803754],"center_1":[8.10640735148469,0.28276025964939716,-3.7271066081803754],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_-4"},{"kind":"MovingSphere","center_0":[8.104233473390904,0.2,-2.5112874885136662],"center_1":[8.104233473390904,0.6993629586430721,-2.5112874885136662],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_-3"},{"kind":"MovingSphere","center_0":[8.07516803423725,0.2,-1.5817278157894414],"center_1":[8.07516803423725,0.3123256155334872,-1.5817278157894414],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_-2"},{"kind":"Sphere","center":[8.335389907389256,0.2,-0.9094260249266557],"radius":0.2,"material":"sphere material 8_-1"},{"kind":"MovingSphere","center_0":[8.44513035612963,0.2,0.7933268355892472],"center_1":[8.44513035612963,0.35776724437640756,0.7933268355892472],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_0"},{"kind":"MovingSphere","center_0":[8.366390550067226,0.2,1.64387420762713],"center_1":[8.366390550067226,0.572277181950539,1.64387420762713],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_1"},{"kind":"MovingSphere","center_0":[8.482332699192431,0.2,2.003842548908027],"center_1":[8.482332699192431,0.3614613196679943,2.003842548908027],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_2"},{"kind":"Sphere","center":[8.562743985592073,0.2,3.887478772147473],"radius":0.2,"material":"sphere material 8_3"},{"kind":"MovingSphere","center_0":[8.706149798546619,0.2,4.031876621757399],"center_1":[8.706149798546619,0.5620965406477232,4.031876621757399],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_4"},{"kind":"Sphere","center":[8.780485873730923,0.2,5.065611466487605],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[8.425863139606056,0.2,6.660737574263842],"center_1":[8.425863139606056,0.302122260430056,6.660737574263842],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_6"},{"kind":"MovingSphere","center_0":[8.528192610091741,0.2,7.017295073028966],"center_1":[8.528192610091741,0.3872270657742877,7.017295073028966],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_7"},{"kind":"MovingSphere","center_0":[8.623031415456031,0.2,8.192929875409947],"center_1":[8.623031415456031,0.29734586668917345,8.192929875409947],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_8"},{"kind":"MovingSphere","center_0":[8.880572633990964,0.2,9.111594485184396],"center_1":[8.880572633990964,0.333495208843186,9.111594485184396],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_9"},{"kind":"MovingSphere","center_0":[8.625667191015728,0.2,10.189994660709145],"center_1":[8.625667191015728,0.302988358489745,10.189994660709145],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 8_10"},{"kind":"MovingSphere","center_0":[9.412082896115336,0.2,-10.363957961780896],"center_1":[9.412082896115336,0.441253350229785,-10.363957961780896],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_-11"},{"kind":"MovingSphere","center_0":[9.505591738225046,0.2,-9.183744346624286],"center_1":[9.505591738225046,0.621147764787696,-9.183744346624286],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_-10"},{"kind":"Sphere","center":[9.407242942523489,0.2,-8.48011342696492],"radius":0.2,"material":"sphere material 9_-9"},{"kind":"MovingSphere","center_0":[9.082023103694947,0.2,-7.335965575396439],"center_1":[9.082023103694947,0.3693520638388072,-7.335965575396439],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_-8"},{"kind":"MovingSphere","center_0":[9.787405263375673,0.2,-6.359444701390934],"center_1":[9.787405263375673,0.6448449807112666,-6.359444701390934],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_-7"},{"kind":"MovingSphere","center_0":[9.128016499882815,0.2,-5.452024244470669],"center_1":[9.128016499882815,0.43256307486125084,-5.452024244470669],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_-6"},{"kind":"MovingSphere","center_0":[9.291723421283638,0.2,-4.277671681391365],"center_1":[9.291723421283638,0.4984641370716037,-4.277671681391365],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_-5"},{"kind":"MovingSphere","center_0":[9.398606131785312,0.2,-3.6052372492707407],"center_1":[9.398606131785312,0.6406287901839884,-3.6052372492707407],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_-4"},{"kind":"MovingSphere","center_0":[9.558535831030591,0.2,-2.380851414570465],"center_1":[9.558535831030591,0.2330729406685677,-2.380851414570465],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_-3"},{"kind":"MovingSphere","center_0":[9.528255542328967,0.2,-1.3844455591914535],"center_1":[9.528255542328967,0.22835224608412658,-1.3844455591914535],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_-2"},{"kind":"MovingSphere","center_0":[9.140145006642554,0.2,-0.7245913802004073],"center_1":[9.140145006642554,0.5663753662148696,-0.7245913802004073],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_-1"},{"kind":"MovingSphere","center_0":[9.231240738466285,0.2,0.5649052965920321],"center_1":[9.231240738466285,0.5459311877869497,0.5649052965920321],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_0"},{"kind":"MovingSphere","center_0":[9.213227543110383,0.2,1.5194405261845252],"center_1":[9.213227543110383,0.2917653840505173,1.5194405261845252],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_1"},{"kind":"Sphere","center":[9.206760856084559,0.2,2.7729551509292074],"radius":0.2,"material":"sphere material 9_2"},{"kind":"MovingSphere","center_0":[9.134401220133594,0.2,3.5968794292796513],"center_1":[9.134401220133594,0.27510130991806264,3.5968794292796513],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_3"},{"kind":"Sphere","center":[9.311465800986351,0.2,4.327703696871979],"radius":0.2,"material":"sphere material 9_4"},{"kind":"MovingSphere","center_0":[9.121335153479848,0.2,5.87279010009378],"center_1":[9.121335153479848,0.3761257410764704,5.87279010009378],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_5"},{"kind":"MovingSphere","center_0":[9.26482077917832,0.2,6.762107535135982],"center_1":[9.26482077917832,0.5372389558970099,6.762107535135982],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_6"},{"kind":"Sphere","center":[9.773485941108287,0.2,7.639895527671208],"radius":0.2,"material":"sphere material 9_7"},{"kind":"MovingSphere","center_0":[9.17055816237141,0.2,8.77676628928775],"center_1":[9.17055816237141,0.36588696589984887,8.77676628928775],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_8"},{"kind":"MovingSphere","center_0":[9.802385490972034,0.2,9.464238240038235],"center_1":[9.802385490972034,0.4941235764981506,9.464238240038235],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_9"},{"kind":"MovingSphere","center_0":[9.491266558109277,0.2,10.431566451219904],"center_1":[9.491266558109277,0.419354615415574,10.431566451219904],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 9_10"},{"kind":"MovingSphere","center_0":[10.344407578647601,0.2,-10.215609121146176],"center_1":[10.344407578647601,0.3423634118332572,-10.215609121146176],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_-11"},{"kind":"Sphere","center":[10.333531927407082,0.2,-9.802955316302937],"radius":0.2,"material":"glass"},{"kind":"MovingSphere","center_0":[10.148266019521376,0.2,-8.675898269802707],"center_1":[10.148266019521376,0.31053570323130436,-8.675898269802707],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_-9"},{"kind":"MovingSphere","center_0":[10.646655289427736,0.2,-7.125799321067379],"center_1":[10.646655289427736,0.256467877092821,-7.125799321067379],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_-8"},{"kind":"Sphere","center":[10.879559870931486,0.2,-6.981344145845373],"radius":0.2,"material":"sphere material 10_-7"},{"kind":"MovingSphere","center_0":[10.290285059190955,0.2,-5.58137687054508],"center_1":[10.290285059190955,0.608516898478666,-5.58137687054508],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_-6"},{"kind":"MovingSphere","center_0":[10.095639184056123,0.2,-4.198761726757258],"center_1":[10.095639184056123,0.35236687118197335,-4.198761726757258],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_-5"},{"kind":"MovingSphere","center_0":[10.202173545945545,0.2,-3.3999656080454788],"center_1":[10.202173545945545,0.6253370934446316,-3.3999656080454788],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_-4"},{"kind":"MovingSphere","center_0":[10.543714139506065,0.2,-2.255780112652594],"center_1":[10.543714139506065,0.3320317952441865,-2.255780112652594],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_-3"},{"kind":"MovingSphere","center_0":[10.221978908530787,0.2,-1.72785508873694],"center_1":[10.221978908530787,0.25584739907471926,-1.72785508873694],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_-2"},{"kind":"MovingSphere","center_0":[10.877544527749373,0.2,-0.25781569514865277],"center_1":[10.877544527749373,0.2857895658152499,-0.25781569514865277],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_-1"},{"kind":"MovingSphere","center_0":[10.462841343100832,0.2,0.3554822470764362],"center_1":[10.462841343100832,0.2685743269739778,0.3554822470764362],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_0"},{"kind":"MovingSphere","center_0":[10.316712071580751,0.2,1.7068003357222934],"center_1":[10.316712071580751,0.6697869483636008,1.7068003357222934],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_1"},{"kind":"MovingSphere","center_0":[10.800781342392105,0.2,2.637976108020929],"center_1":[10.800781342392105,0.26858762868752756,2.637976108020929],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_2"},{"kind":"MovingSphere","center_0":[10.895837044262672,0.2,3.5869381383175036],"center_1":[10.895837044262672,0.36331890701690744,3.5869381383175036],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_3"},{"kind":"Sphere","center":[10.461397462595988,0.2,4.037490772734093],"radius":0.2,"material":"sphere material 10_4"},{"kind":"MovingSphere","center_0":[10.4092878537875,0.2,5.532306947430812],"center_1":[10.4092878537875,0.29640083572669024,5.532306947430812],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_5"},{"kind":"MovingSphere","center_0":[10.831530864745929,0.2,6.835792071714447],"center_1":[10.831530864745929,0.5698343817977893,6.835792071714447],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_6"},{"kind":"MovingSphere","center_0":[10.564401396540989,0.2,7.530949969336254],"center_1":[10.564401396540989,0.4211119603600056,7.530949969336254],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_7"},{"kind":"Sphere","center":[10.562058212774428,0.2,8.1401932080574],"radius":0.2,"material":"sphere material 10_8"},{"kind":"MovingSphere","center_0":[10.01517249029728,0.2,9.648396213357199],"center_1":[10.01517249029728,0.5425977656975696,9.648396213357199],"time_0":0,"time_1":1,"radius":0.2,"material":"sphere material 10_9"},{"kind":"Sphere","center":[10.380724350706442,0.2,10.512829254431772],"radius":0.2,"material":"sphere material 10_10"}],"materials":[{"name":"ground material","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5,0.5,0.5]}},{"name":"glass","kind":"Dielectric","refractive_index":1.5},{"name":"lambertian sphere material","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4,0.2,0.1]}},{"name":"metal sphere material","kind":"Metal","fuzz":0,"albedo":{"kind":"SolidColor","color":[0.7,0.6,0.5]}},{"name":"sphere material -11_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3182897065060504,0.9731555820986859,0.6557461095607682]}},{"name":"sphere material -11_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8017116263206729,0.78418509957163,0.6290751271729982]}},{"name":"sphere material -11_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9652959192469743,0.5434488714456003,0.7429842661201504]}},{"name":"sphere material -11_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6784535927590625,0.34980945605193825,0.027232760030509784]}},{"name":"sphere material -11_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9710074237119855,0.4054882063078622,0.1705369599910871]}},{"name":"sphere material -11_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.29487867812090474,0.7049948882595811,0.5613022375443928]}},{"name":"sphere material -11_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6256936031837323,0.5369538479026594,0.457965536227819]}},{"name":"sphere material -11_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3001457420537752,0.5627620823604658,0.6294972290663756]}},{"name":"sphere material -11_-3","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.301600970939776,0.4700582298500846,0.7907049651471247]},"fuzz":0.4213436482278766},{"name":"sphere material -11_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7668475102139507,0.8257407728235018,0.47776882978476753]}},{"name":"sphere material -11_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.23757072776511956,0.10007014002965997,0.8770897117351246]}},{"name":"sphere material -11_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1163969794990023,0.465615971939765,0.09371572593840494]}},{"name":"sphere material -11_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8836296923036708,0.08989403703747145,0.8038044240977302]}},{"name":"sphere material -11_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8337105726506582,0.32353373556346,0.19107791378187944]}},{"name":"sphere material -11_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.753396249997617,0.976836121049335,0.8603590608383738]}},{"name":"sphere material -11_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8152588585366956,0.7870595580983224,0.5083311330117803]}},{"name":"sphere material -11_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8940933456451998,0.527624714589289,0.49121321653583294]}},{"name":"sphere material -11_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.13898493525818312,0.5198108928690732,0.8383971974976019]}},{"name":"sphere material -11_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.467612554399339,0.7202949609922469,0.4571923887612872]}},{"name":"sphere material -11_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5124890701595137,0.9041640674193527,0.57183420199496]}},{"name":"sphere material -11_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.04951763938589915,0.16411530778770844,0.7334249752746849]}},{"name":"sphere material -10_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.40988984623943514,0.0020882144066654007,0.6418883559321082]}},{"name":"sphere material -10_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5149275418085346,0.5548679471280893,0.33119408463378996]}},{"name":"sphere material -10_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.38496440277848887,0.9345136315127047,0.6355562428995629]}},{"name":"sphere material -10_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.007217250002645503,0.2910389340449313,0.7991427815536616]}},{"name":"sphere material -10_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2759891501399112,0.7794913609448493,0.4656819059112691]}},{"name":"sphere material -10_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.769161743386684,0.06499234499351902,0.6383393365808905]}},{"name":"sphere material -10_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.554648427216105,0.50020523117032,0.8854368847605105]}},{"name":"sphere material -10_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.45609176885062896,0.8460237407653988,0.5579307240035922]}},{"name":"sphere material -10_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.741037406273614,0.6449757484610361,0.5952509049308266]}},{"name":"sphere material -10_-2","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5059268396228958,0.6408427313524869,0.41116789578598834]},"fuzz":0.12894061563650827},{"name":"sphere material -10_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6075187487191092,0.45637855116186943,0.04799865330770592]}},{"name":"sphere material -10_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1553537679161121,0.8706255931804656,0.09592484015395164]}},{"name":"sphere material -10_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8624113740471133,0.8994414712665995,0.41426853115748874]}},{"name":"sphere material -10_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4623089147375439,0.9693864307842093,0.964604433859243]}},{"name":"sphere material -10_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7320317564987444,0.008393056194900383,0.08212739684159365]}},{"name":"sphere material -10_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.46838785188867016,0.3168303708294824,0.4962169350975385]}},{"name":"sphere material -10_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.21405285817931374,0.24568725323318819,0.4537114482647975]}},{"name":"sphere material -10_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.04824854652759858,0.3795880506937477,0.8542120120750893]}},{"name":"sphere material -10_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.026306267966587527,0.5234241017830501,0.8719773723182127]}},{"name":"sphere material -10_9","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.305722900133075,0.9042144188163042,0.8456043532361404]},"fuzz":0.44458620917048264},{"name":"sphere material -10_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3592248108674927,0.3044515253177904,0.18509760191253366]}},{"name":"sphere material -9_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5134318230906529,0.5711519442997417,0.0029457889145425575]}},{"name":"sphere material -9_-10","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.12644966049923712,0.6590332839718804,0.6900973581998262]},"fuzz":0.20399155850262018},{"name":"sphere material -9_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4029077403703223,0.3948264117304121,0.48304193914920446]}},{"name":"sphere material -9_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4866247014083127,0.9776853610420495,0.23708495237795457]}},{"name":"sphere material -9_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3954235174457037,0.8269742400705165,0.8818953443793831]}},{"name":"sphere material -9_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.662454662976975,0.01723908904138227,0.9507312023127903]}},{"name":"sphere material -9_-3","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.31577215299179984,0.4494816178853014,0.9512901083815417]},"fuzz":0.3812796034924921},{"name":"sphere material -9_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8771616529981614,0.4497659469547459,0.8621771703940029]}},{"name":"sphere material -9_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.14103548181858172,0.7763948393294855,0.07565545361558113]}},{"name":"sphere material -9_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.957851201266692,0.03849055991926775,0.7751443658500679]}},{"name":"sphere material -9_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6157534194039054,0.5997016212917252,0.9881205525334342]}},{"name":"sphere material -9_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2148999235789184,0.5646428903769132,0.9523306285343736]}},{"name":"sphere material -9_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9614976090393212,0.2325032691367226,0.10161386040792264]}},{"name":"sphere material -9_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5480072418076876,0.954645137544152,0.6430928541961682]}},{"name":"sphere material -9_5","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5939057310168452,0.895627887865327,0.9315509289586679]},"fuzz":0.05540645667130717},{"name":"sphere material -9_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5786293583732522,0.9899819700660264,0.1907366931451604]}},{"name":"sphere material -9_7","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.6763567969937729,0.6982118576611,0.3469736908026586]},"fuzz":0.13647423305042783},{"name":"sphere material -9_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5550139938835668,0.8166608933068709,0.5639341843053081]}},{"name":"sphere material -9_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.02919503589549688,0.706152039870378,0.9946551682056912]}},{"name":"sphere material -9_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8495740777741028,0.49370635081176717,0.9687194008793718]}},{"name":"sphere material -8_-11","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.9088859053553375,0.6120919172663499,0.9342828519650257]},"fuzz":0.3314856798746292},{"name":"sphere material -8_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.642577356825556,0.9391915788436438,0.34288394629809327]}},{"name":"sphere material -8_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6104143107151629,0.19131577702422242,0.4823865703146406]}},{"name":"sphere material -8_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9214843048929928,0.934107137316009,0.1408932361925257]}},{"name":"sphere material -8_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6185776284372695,0.46287960051938737,0.3196162851353821]}},{"name":"sphere material -8_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.08650831052631469,0.3183735911167478,0.7136290003941654]}},{"name":"sphere material -8_-5","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7562224669191935,0.23776451901321782,0.9016150364653406]},"fuzz":0.15452567233619363},{"name":"sphere material -8_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.292026547311411,0.5302677060713095,0.9309894010237618]}},{"name":"sphere material -8_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7333588044031354,0.9933712310278704,0.9497266667051394]}},{"name":"sphere material -8_-2","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.9030740953471024,0.0764871029756724,0.03700327768822942]},"fuzz":0.12674005935854138},{"name":"sphere material -8_-1","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.2532657439602337,0.35867070934932976,0.9228452403190885]},"fuzz":0.038642623497191386},{"name":"sphere material -8_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.06791412270070762,0.3638646035819413,0.0531399556754788]}},{"name":"sphere material -8_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.42970220974203976,0.7795691102213504,0.5445450707161055]}},{"name":"sphere material -8_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6368496355481954,0.6663322988526359,0.3562080053018608]}},{"name":"sphere material -8_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.44770378190755933,0.8977043182563156,0.6483507392283607]}},{"name":"sphere material -8_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.646923160792733,0.6337479821344358,0.5000746881804163]}},{"name":"sphere material -8_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3791860130805329,0.6942772750973394,0.5411419096169299]}},{"name":"sphere material -8_6","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8962273908868683,0.20455948078162933,0.6872791642104263]},"fuzz":0.22057365888104485},{"name":"sphere material -8_7","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.15796838967894855,0.5453617580563919,0.9341784887207396]},"fuzz":0.026344741177790953},{"name":"sphere material -8_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9511175230247146,0.15785891313946898,0.8312538936013614]}},{"name":"sphere material -8_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7776418574665238,0.8056167541309616,0.482885771753085]}},{"name":"sphere material -8_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2987668727180315,0.2838536172494983,0.5177429320093716]}},{"name":"sphere material -7_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6721867266987729,0.2534569826072812,0.3419251122958431]}},{"name":"sphere material -7_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.0033463588793243293,0.9857751481095236,0.31184896236964543]}},{"name":"sphere material -7_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.06276192724598162,0.29799471533921285,0.5676400424140302]}},{"name":"sphere material -7_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.684058885376372,0.014498328431628682,0.09263321530087221]}},{"name":"sphere material -7_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.45716047320297526,0.5835065673225459,0.8268872740559754]}},{"name":"sphere material -7_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8350881064329214,0.6497653991908139,0.7178756210840835]}},{"name":"sphere material -7_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2523512823123166,0.021832128270692586,0.6766544469679088]}},{"name":"sphere material -7_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.23085001363011481,0.14616131047517444,0.20289780828758808]}},{"name":"sphere material -7_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9124442753024946,0.5213379123786988,0.08598071098361126]}},{"name":"sphere material -7_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.19412231294526494,0.1688783371783309,0.053621779749440046]}},{"name":"sphere material -7_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7736061378502623,0.40385958811881806,0.8793809714099359]}},{"name":"sphere material -7_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.40781539377504505,0.8568119506402176,0.2554190095359812]}},{"name":"sphere material -7_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7293540918866173,0.9979231326476539,0.7319675677627795]}},{"name":"sphere material -7_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4136608147907481,0.13945962309840176,0.9149329217309694]}},{"name":"sphere material -7_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7516408422976972,0.7904439689896277,0.25167409068071067]}},{"name":"sphere material -7_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8318725145153658,0.11419275260208894,0.8774420215891756]}},{"name":"sphere material -7_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5818799270645498,0.4646211944421317,0.9082747746792568]}},{"name":"sphere material -7_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.38068933713812525,0.21439574465963185,0.1399987285270159]}},{"name":"sphere material -7_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.019262833020771142,0.12452600441541173,0.9879906065224966]}},{"name":"sphere material -7_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.335973437145235,0.913008721258882,0.11531896993527924]}},{"name":"sphere material -7_9","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.06201630543252046,0.8516015094403067,0.05581389165941153]},"fuzz":0.284323410562036},{"name":"sphere material -7_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.11978225742306425,0.9027445154399654,0.17332909532609775]}},{"name":"sphere material -6_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.14309017584064043,0.3119515733998717,0.7675269464981569]}},{"name":"sphere material -6_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8148339736650556,0.48612951566902685,0.3908048611512067]}},{"name":"sphere material -6_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9985415464584622,0.18488875351526124,0.9656896776353783]}},{"name":"sphere material -6_-8","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.20696570158789784,0.07246439800961957,0.20275283864110016]},"fuzz":0.23479058438983802},{"name":"sphere material -6_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5944900578483714,0.709773234245535,0.0693251175042513]}},{"name":"sphere material -6_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8893328576875736,0.952876332425246,0.6857539116344646]}},{"name":"sphere material -6_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7145509166587634,0.5625792166698078,0.39685765069154244]}},{"name":"sphere material -6_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8406004431155547,0.16736779650570743,0.8243640879535563]}},{"name":"sphere material -6_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.33747063395847077,0.5743908738628041,0.8637373561263704]}},{"name":"sphere material -6_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.39232118707996677,0.15266234812451107,0.20235627177765392]}},{"name":"sphere material -6_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.35679169055703497,0.41702877233271063,0.8110623351331698]}},{"name":"sphere material -6_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5883875994446877,0.5918306761899514,0.6868265489783534]}},{"name":"sphere material -6_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5561502949694708,0.6606167003874239,0.4498544132371447]}},{"name":"sphere material -6_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5530957105848595,0.8201428184050015,0.6450933186710368]}},{"name":"sphere material -6_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5293449232817502,0.04843545386223935,0.6484182095657305]}},{"name":"sphere material -6_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9353690730816204,0.7427825345760386,0.21329574649283023]}},{"name":"sphere material -6_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5103534757602928,0.751744951626683,0.3953317589485579]}},{"name":"sphere material -6_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.06863120911777276,0.2385690944226755,0.1277626809716561]}},{"name":"sphere material -6_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9773148547673658,0.7329974066983946,0.7410171014045277]}},{"name":"sphere material -6_8","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.344460647532735,0.5791697939254097,0.7905150680849007]},"fuzz":0.07861760034207554},{"name":"sphere material -6_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8082552331253146,0.6754912213745334,0.48267484902598023]}},{"name":"sphere material -6_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5799717706906387,0.718511519057742,0.07488300680916504]}},{"name":"sphere material -5_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7488195910839346,0.41207838723428813,0.6536151699772681]}},{"name":"sphere material -5_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7416443174218859,0.7478995321261686,0.9848855727091572]}},{"name":"sphere material -5_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.22540807848280164,0.6531783854789277,0.015302969798089316]}},{"name":"sphere material -5_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.13308122146071355,0.6530717300105846,0.3917442418009103]}},{"name":"sphere material -5_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.953251240418634,0.38588808823291454,0.6457994224376558]}},{"name":"sphere material -5_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6366353961584164,0.345797251223138,0.5663592119239336]}},{"name":"sphere material -5_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3251509240437387,0.3297714906690472,0.16170646911526743]}},{"name":"sphere material -5_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6723995446203765,0.4447277846490274,0.04662070706573607]}},{"name":"sphere material -5_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.07791651787036735,0.11684682510696942,0.3409736572392714]}},{"name":"sphere material -5_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6174073543584744,0.7864698624096405,0.44522477995284926]}},{"name":"sphere material -5_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6605909189798003,0.47766498464555585,0.21359132508540601]}},{"name":"sphere material -5_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5428245071352038,0.5390527122354922,0.6853389351081858]}},{"name":"sphere material -5_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4658391062435028,0.8856507531391464,0.9517310142397599]}},{"name":"sphere material -5_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6256539366347429,0.9709557608444284,0.46421851889590116]}},{"name":"sphere material -5_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6631975239475754,0.015526604822633905,0.814023313282382]}},{"name":"sphere material -5_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5421391574666967,0.2856175569249395,0.28083998160373524]}},{"name":"sphere material -5_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9224253443690873,0.8715918266779701,0.06404513935887612]}},{"name":"sphere material -5_7","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.3852870917263993,0.9125798192455121,0.29562112715472]},"fuzz":0.2406281142037212},{"name":"sphere material -5_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.30133918557335826,0.6166399129753128,0.10436234358275209]}},{"name":"sphere material -5_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9449520014248072,0.23401950633518043,0.9859246268843511]}},{"name":"sphere material -5_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8440697647265145,0.5070268102709652,0.12121835668302205]}},{"name":"sphere material -4_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.18560176162557385,0.2756906966302255,0.8651845103245068]}},{"name":"sphere material -4_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4330952977126197,0.8963746044945928,0.0018401797265708009]}},{"name":"sphere material -4_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.35250563956772285,0.9054915483019708,0.6723744952239976]}},{"name":"sphere material -4_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9122801637340048,0.03024691791769074,0.6546496495759282]}},{"name":"sphere material -4_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8143224102095399,0.2665397003534804,0.5010930393099553]}},{"name":"sphere material -4_-4","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5446961459251065,0.7282965698414625,0.6757950317122525]},"fuzz":0.14302583744202046},{"name":"sphere material -4_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5711276600225808,0.46553055490029105,0.5828884170044883]}},{"name":"sphere material -4_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6903410052784311,0.04600272426967389,0.8780367801586841]}},{"name":"sphere material -4_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9188281984502504,0.7178943006076999,0.15633385860366023]}},{"name":"sphere material -4_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7508664850942812,0.5116724502126626,0.75765329748093]}},{"name":"sphere material -4_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.874700269883347,0.628331682939218,0.959377472609046]}},{"name":"sphere material -4_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8353240267984199,0.023809132141586753,0.17688262394191612]}},{"name":"sphere material -4_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3701844527839131,0.3306338755074407,0.8052737845004321]}},{"name":"sphere material -4_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9911684926567637,0.6035990327779444,0.32545735892449135]}},{"name":"sphere material -4_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.0028340637127919344,0.005716944353651998,0.012338282030293746]}},{"name":"sphere material -4_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8936258829575634,0.5675208194458907,0.6123297108792378]}},{"name":"sphere material -4_8","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7399515447540044,0.5471448358935016,0.43099932333502866]},"fuzz":0.4994180272257105},{"name":"sphere material -4_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7801921161574872,0.9409016998379298,0.23685277056618181]}},{"name":"sphere material -4_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5505613956320909,0.29947214870990035,0.597899001710481]}},{"name":"sphere material -3_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.707266183671865,0.14159937537103562,0.7325824698099268]}},{"name":"sphere material -3_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5531788353155858,0.7927528631163869,0.7332906708256153]}},{"name":"sphere material -3_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5246943605491727,0.02123664166102257,0.39779995704142435]}},{"name":"sphere material -3_-8","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.36889823206157835,0.8630469960013372,0.4073948761433581]},"fuzz":0.43923362073179417},{"name":"sphere material -3_-7","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5678729689855255,0.5220362142902866,0.4895997539030623]},"fuzz":0.17548725781242647},{"name":"sphere material -3_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.44834015453013243,0.5664092650376267,0.012566194377775952]}},{"name":"sphere material -3_-5","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.23617786139473562,0.4734741630844188,0.5191063590604694]},"fuzz":0.07708995665015084},{"name":"sphere material -3_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.42241775632599654,0.9637238419591669,0.1630861402177637]}},{"name":"sphere material -3_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9904888303908785,0.978053025097724,0.49180286847657495]}},{"name":"sphere material -3_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.673458729494355,0.5344203460670465,0.5870014070199265]}},{"name":"sphere material -3_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.693195614656523,0.5249401637435316,0.38771859758460203]}},{"name":"sphere material -3_0","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.6624278899657314,0.40550529194897655,0.41774864712006665]},"fuzz":0.013334396278310123},{"name":"sphere material -3_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.13314922071791702,0.9577638160832476,0.5112076206004894]}},{"name":"sphere material -3_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9120411581647145,0.8690656028309058,0.8698100939715707]}},{"name":"sphere material -3_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.19259023822626697,0.842578673855584,0.339331351280153]}},{"name":"sphere material -3_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5525773639974942,0.03632101251205677,0.1441198144396758]}},{"name":"sphere material -3_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2915861338386798,0.3645067061016083,0.7376355729657613]}},{"name":"sphere material -3_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.04550139113587637,0.5933226328128636,0.7255308804927627]}},{"name":"sphere material -3_8","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.11368976061873282,0.17229637616585403,0.8299212332148571]},"fuzz":0.05069374330452636},{"name":"sphere material -3_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5978343458675714,0.610178824673272,0.9325774812648533]}},{"name":"sphere material -3_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7177169554493084,0.07502570502259909,0.09137042794635297]}},{"name":"sphere material -2_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.17460883525182203,0.25072760477234546,0.3011852658942833]}},{"name":"sphere material -2_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5273239135412837,0.4466643812004705,0.19172987607342562]}},{"name":"sphere material -2_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5229789648448155,0.6139391772419787,0.18621721462306362]}},{"name":"sphere material -2_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4923246913825787,0.1264408011440452,0.9164175637068392]}},{"name":"sphere material -2_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7541051519120754,0.8732121360286846,0.5841623000096374]}},{"name":"sphere material -2_-6","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.13395014815570638,0.19368257690017576,0.6252884509982441]},"fuzz":0.07112519208478052},{"name":"sphere material -2_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.862992972395844,0.9410564667341978,0.30562453075520235]}},{"name":"sphere material -2_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1683975971386531,0.34156228920963017,0.6232434380224663]}},{"name":"sphere material -2_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1510458014858791,0.38442922335559016,0.017945319580056962]}},{"name":"sphere material -2_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8534669099573879,0.49361491230978416,0.14078193910854764]}},{"name":"sphere material -2_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.28062343686179325,0.22478565572015174,0.6638052275855126]}},{"name":"sphere material -2_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.016523782638214746,0.28767546873124505,0.4895498979840114]}},{"name":"sphere material -2_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.153616602366333,0.7467057695908612,0.39072286919205346]}},{"name":"sphere material -2_2","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7307847623517267,0.1114359233535227,0.3739736043777204]},"fuzz":0.2074908709689276},{"name":"sphere material -2_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.055338074048063124,0.14780403811243237,0.9610402425649969]}},{"name":"sphere material -2_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7186644297186628,0.16404699658074984,0.5914585634255092]}},{"name":"sphere material -2_5","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8343352758154206,0.5796307287660916,0.8916215476151403]},"fuzz":0.45372680398325727},{"name":"sphere material -2_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3504236057091361,0.9710174518106953,0.8597026454316201]}},{"name":"sphere material -2_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.20384323802218263,0.06855359872133415,0.4483216215859256]}},{"name":"sphere material -2_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.20135677352186288,0.0022574845858618353,0.17337359464320845]}},{"name":"sphere material -2_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3728004132951894,0.09409417987747126,0.1730742953803599]}},{"name":"sphere material -2_10","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5329570567967636,0.5946930377357265,0.5887059601508691]},"fuzz":0.3221562901681476},{"name":"sphere material -1_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.18209782589006163,0.4464586148588394,0.31593824001823]}},{"name":"sphere material -1_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6515453177667863,0.3929240422776197,0.2128875200336171]}},{"name":"sphere material -1_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9492638451119719,0.428452902587253,0.06353694895796114]}},{"name":"sphere material -1_-8","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8822447713835737,0.18901964895713985,0.19829581839934063]},"fuzz":0.35954986389605836},{"name":"sphere material -1_-7","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.4076500114476489,0.7229595995598135,0.05965376570625924]},"fuzz":0.49894352470007053},{"name":"sphere material -1_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9868879080748285,0.3890284549421754,0.43967425066105403]}},{"name":"sphere material -1_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7028640969832958,0.887810363331925,0.945424751695326]}},{"name":"sphere material -1_-4","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.06453418204560468,0.7744126426196503,0.11884770208781403]},"fuzz":0.4888739665320607},{"name":"sphere material -1_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7157314891913644,0.8638448106644441,0.7993967117430802]}},{"name":"sphere material -1_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7905534441343189,0.9008479941389809,0.18018984927896575]}},{"name":"sphere material -1_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5249509557070213,0.6675515020722718,0.17243969470038856]}},{"name":"sphere material -1_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.49712908536059275,0.9412111665497358,0.599799881799916]}},{"name":"sphere material -1_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.895308676427335,0.13959630352568997,0.26931160804746]}},{"name":"sphere material -1_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7225233786973217,0.09058333506614669,0.569534926694242]}},{"name":"sphere material -1_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9595021260213557,0.8049739295876199,0.21096242111995078]}},{"name":"sphere material -1_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.10712384519800011,0.2410375784539922,0.2516651631847806]}},{"name":"sphere material -1_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1481618202713051,0.2504960442786186,0.8675837199346672]}},{"name":"sphere material -1_7","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.2516798948039001,0.7780993577556357,0.7693254070715203]},"fuzz":0.07133490761500338},{"name":"sphere material -1_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.982214503933972,0.947203135911121,0.4190561037081082]}},{"name":"sphere material -1_9","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.11415911162382253,0.4077977196445388,0.9102004302516913]},"fuzz":0.0007344188702832488},{"name":"sphere material -1_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.45780584186403295,0.7234377671937335,0.378563365389863]}},{"name":"sphere material 0_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6552781472839468,0.6952823574286062,0.9615044445297778]}},{"name":"sphere material 0_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.41796538768982616,0.15946316858140497,0.6464012746437167]}},{"name":"sphere material 0_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9578085494713278,0.5102907763165687,0.4832269009864627]}},{"name":"sphere material 0_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9592383107163629,0.20801562446706034,0.6934736302777917]}},{"name":"sphere material 0_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8546514023740135,0.40862056137127434,0.36846493743879205]}},{"name":"sphere material 0_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3136884911716231,0.2514908964130034,0.17671814424324572]}},{"name":"sphere material 0_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7067054376197679,0.5796989409811486,0.5805154685244429]}},{"name":"sphere material 0_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.16505846519163003,0.7104439408374459,0.9614139094511938]}},{"name":"sphere material 0_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8385364611149824,0.7224085413319894,0.692384585282964]}},{"name":"sphere material 0_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.45695824214212477,0.04324599578004196,0.9987383486085457]}},{"name":"sphere material 0_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4310893155235622,0.0919997128340364,0.8892670396920177]}},{"name":"sphere material 0_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4511062485167965,0.3392658385950025,0.8724286532796806]}},{"name":"sphere material 0_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9096621671257987,0.33025298657988045,0.11990960077457924]}},{"name":"sphere material 0_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.550773474535275,0.17306497317923553,0.5993677646674467]}},{"name":"sphere material 0_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5049191315886088,0.33630768529087307,0.040181262919034344]}},{"name":"sphere material 0_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2920765283267932,0.18363850720805108,0.8452255416921761]}},{"name":"sphere material 0_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.056253656840377975,0.5075729549918664,0.8497399492737798]}},{"name":"sphere material 0_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.202726174989605,0.817261797418918,0.1687110410659447]}},{"name":"sphere material 0_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2388544424906629,0.12464657104241739,0.4071894040985673]}},{"name":"sphere material 0_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6158952421317005,0.9812977674429162,0.40770209522817735]}},{"name":"sphere material 1_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5479163623868697,0.7241247509845377,0.13990141030180947]}},{"name":"sphere material 1_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6577475991587229,0.6501297390151166,0.21644010832161942]}},{"name":"sphere material 1_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.21468888898903238,0.615339200589343,0.38304886663570037]}},{"name":"sphere material 1_-8","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.07380386432294683,0.19448502325717065,0.46576551537409694]},"fuzz":0.4215605596866958},{"name":"sphere material 1_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7054776446658206,0.9220996742777285,0.7122685829008337]}},{"name":"sphere material 1_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7220243669874478,0.829667413879837,0.8321512610207882]}},{"name":"sphere material 1_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.0677806781562249,0.8237755002720224,0.876642959110862]}},{"name":"sphere material 1_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2819708610802185,0.12320029258841458,0.11796382516326265]}},{"name":"sphere material 1_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48146224178424024,0.141137165283862,0.6179927295677781]}},{"name":"sphere material 1_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5052690465942586,0.5467199999439256,0.2869941312036388]}},{"name":"sphere material 1_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8615495124799402,0.595739391266549,0.42786135222663013]}},{"name":"sphere material 1_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6418893104952412,0.6773870961803996,0.13925292092237984]}},{"name":"sphere material 1_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9468580691666135,0.04855831922338738,0.5698214098023648]}},{"name":"sphere material 1_2","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8263447443204592,0.2628916080637398,0.9134156075640159]},"fuzz":0.17675119286850516},{"name":"sphere material 1_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.31884060923146573,0.4877099740968822,0.012115500108966781]}},{"name":"sphere material 1_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.983939719226506,0.2145045737536868,0.32058103340980226]}},{"name":"sphere material 1_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6560069693807398,0.8238330112978827,0.4051600781640614]}},{"name":"sphere material 1_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7088242321906235,0.8428762094727931,0.6773712410854382]}},{"name":"sphere material 1_7","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8444587333895623,0.3880878720871841,0.1490687864694138]},"fuzz":0.3761738850526887},{"name":"sphere material 1_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9163457547817324,0.9890629473171999,0.10911203002677827]}},{"name":"sphere material 1_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7072633299027835,0.798649969396737,0.8856446276236132]}},{"name":"sphere material 2_-11","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.888479916147249,0.058671060661119157,0.3746604563779323]},"fuzz":0.3636640857136365},{"name":"sphere material 2_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.742355734250534,0.2141732230080733,0.8210628456115516]}},{"name":"sphere material 2_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8525865211896286,0.6271309574679849,0.7105624448448493]}},{"name":"sphere material 2_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.490848119535076,0.9082722492959232,0.6428593628781667]}},{"name":"sphere material 2_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7064679790766166,0.8414590425874728,0.8181497690979671]}},{"name":"sphere material 2_-6","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5315999001395597,0.694917453466048,0.4306595734367]},"fuzz":0.071277855814744},{"name":"sphere material 2_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8766939623681169,0.10940440938790807,0.8550810993329556]}},{"name":"sphere material 2_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3061220268529654,0.20432908496032587,0.46713364754172515]}},{"name":"sphere material 2_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.37257334524302066,0.7426721056786396,0.6699920049793289]}},{"name":"sphere material 2_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.06283624305440472,0.23550076209113313,0.6073685545185961]}},{"name":"sphere material 2_-1","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.28228325522338005,0.022897086006270495,0.24561267509031603]},"fuzz":0.0750771233110259},{"name":"sphere material 2_0","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5058406188576923,0.9750877399453795,0.7681730670289948]},"fuzz":0.18550887046398645},{"name":"sphere material 2_1","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.9222213579051624,0.8873100388218522,0.34563783895974454]},"fuzz":0.14029747166951534},{"name":"sphere material 2_2","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.4893979523074732,0.7405635717480881,0.32268817083864043]},"fuzz":0.04950570835226509},{"name":"sphere material 2_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.25205853959917546,0.5858967260998347,0.4440205864675921]}},{"name":"sphere material 2_4","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8755963769926594,0.972662408086818,0.5523807501007052]},"fuzz":0.4289237670485988},{"name":"sphere material 2_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7524244460533449,0.9675348511549073,0.6915846495632321]}},{"name":"sphere material 2_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.39211268294320356,0.3525429864924967,0.9263244657826728]}},{"name":"sphere material 2_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6095048931388389,0.5499822811034196,0.7934206555923231]}},{"name":"sphere material 2_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3866443547138365,0.4326339504998846,0.529286926272746]}},{"name":"sphere material 2_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.08713568665954896,0.5789536357748575,0.6721021153324165]}},{"name":"sphere material 3_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8447600079873048,0.3630205497676575,0.7859586838604848]}},{"name":"sphere material 3_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.11605658717733891,0.3746128214542823,0.9449398851429931]}},{"name":"sphere material 3_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.061159203969916476,0.4258997517249612,0.8809970035923786]}},{"name":"sphere material 3_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7292938485666334,0.2786724737191453,0.00884425624092855]}},{"name":"sphere material 3_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9353046790902395,0.18875516504599554,0.1016149246741136]}},{"name":"sphere material 3_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.24280704776605555,0.27848234567137053,0.0728542114460018]}},{"name":"sphere material 3_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.453886706508422,0.3550920812323781,0.7202569948066151]}},{"name":"sphere material 3_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.40172649597458654,0.2504189563713959,0.10031107039156817]}},{"name":"sphere material 3_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.14189108243271553,0.08014951022420402,0.6073690260141531]}},{"name":"sphere material 3_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.07073715694993088,0.2704117205875469,0.04695658160031524]}},{"name":"sphere material 3_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8154191988026294,0.39221929497876906,0.7430470040692803]}},{"name":"sphere material 3_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.22881544439187285,0.007480219411857503,0.8420284897850863]}},{"name":"sphere material 3_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9350091989937059,0.0520714698871696,0.510300323678555]}},{"name":"sphere material 3_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7124772964480841,0.1721533226124925,0.813484226451874]}},{"name":"sphere material 3_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9899612107664808,0.46641275018724704,0.710641771504136]}},{"name":"sphere material 3_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.49384145174548766,0.16071659428753793,0.34042000790431426]}},{"name":"sphere material 3_5","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.4800028322045864,0.18930550463528206,0.7727823924543615]},"fuzz":0.14328096737077023},{"name":"sphere material 3_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.15193230487382703,0.919537259655214,0.5881818956999212]}},{"name":"sphere material 3_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7968368453376631,0.16085714876386215,0.06766271009603364]}},{"name":"sphere material 3_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7175316764031177,0.5244846503468321,0.6740810411939455]}},{"name":"sphere material 3_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9296028443011521,0.4922961562049841,0.7783456243278979]}},{"name":"sphere material 3_10","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.32476517481069833,0.8592254661207117,0.11472017576299143]},"fuzz":0.3809932483650914},{"name":"sphere material 4_-11","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.39077343849943946,0.5762467876534649,0.8434822710175713]},"fuzz":0.49203346658163805},{"name":"sphere material 4_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.818407025170059,0.020380128486608973,0.994248409849694]}},{"name":"sphere material 4_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.025194338002531014,0.775784669668147,0.7273330068436406]}},{"name":"sphere material 4_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5807059327048607,0.651332321567869,0.78478407624619]}},{"name":"sphere material 4_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.17555634611279558,0.2714390370630777,0.2570949980809827]}},{"name":"sphere material 4_-6","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5339430099089066,0.23070160274288454,0.13692433419441374]},"fuzz":0.0845147490687872},{"name":"sphere material 4_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.26821279564113776,0.7076978109788874,0.06792317371791601]}},{"name":"sphere material 4_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9426034297199131,0.5961774220325349,0.8021072915429648]}},{"name":"sphere material 4_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7211212313459585,0.14763696591112918,0.19134028892412447]}},{"name":"sphere material 4_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5227296169926976,0.0968130058930019,0.03979618435821397]}},{"name":"sphere material 4_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1892910929567866,0.34613517304010233,0.8661580930157418]}},{"name":"sphere material 4_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.20465143557267496,0.537568205592541,0.25759243781037044]}},{"name":"sphere material 4_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.22279487034655077,0.589293140533371,0.8089546415814006]}},{"name":"sphere material 4_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5049716454580115,0.9004412682979841,0.9713813808825982]}},{"name":"sphere material 4_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3477037268637231,0.6596045364831136,0.08460699228543156]}},{"name":"sphere material 4_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.01926487006148081,0.678234784518015,0.1023642660486419]}},{"name":"sphere material 4_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6367415082063825,0.5890386590384116,0.9830685622877862]}},{"name":"sphere material 4_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8274208293536573,0.4449758678881546,0.22567386738543527]}},{"name":"sphere material 4_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6281903963382518,0.26531307625034395,0.39903801917843196]}},{"name":"sphere material 4_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6443527218190552,0.5198440973049894,0.307902626319279]}},{"name":"sphere material 4_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7278553957975809,0.1808408090518272,0.8013995109211067]}},{"name":"sphere material 5_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8163598186871952,0.19300608489907245,0.678578769851893]}},{"name":"sphere material 5_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7125821054092023,0.9501755893423853,0.23391634165568975]}},{"name":"sphere material 5_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.11966991388367343,0.9959673531861695,0.49187500669891704]}},{"name":"sphere material 5_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7588243947506856,0.6828859790182209,0.5475294444351628]}},{"name":"sphere material 5_-7","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.16307283590135357,0.09150556418773959,0.08097889014035475]},"fuzz":0.4751633965929498},{"name":"sphere material 5_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.30682704398736527,0.9891983366291661,0.3393254156370884]}},{"name":"sphere material 5_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5865502909143323,0.9925104969537177,0.5730081771282567]}},{"name":"sphere material 5_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7404117705625806,0.21763087813991855,0.40062116677716175]}},{"name":"sphere material 5_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9578374728118693,0.17219249440356443,0.6852309062583042]}},{"name":"sphere material 5_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7050112839891318,0.21236980452299314,0.47799610741630527]}},{"name":"sphere material 5_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9810975672527722,0.6819503130888567,0.2902105003420892]}},{"name":"sphere material 5_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6190963170096768,0.983165024255857,0.1639236566761546]}},{"name":"sphere material 5_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.615658665714024,0.7134078789574545,0.40934732739834545]}},{"name":"sphere material 5_2","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.6682294429838154,0.3894797122458957,0.28569156002519747]},"fuzz":0.27935300151936215},{"name":"sphere material 5_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.07364387515876736,0.12978706024723818,0.9141356767635851]}},{"name":"sphere material 5_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5206541246815934,0.8464562358938965,0.15173750888908133]}},{"name":"sphere material 5_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2037329311737457,0.48418565230747146,0.27876627842736745]}},{"name":"sphere material 5_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5588617552352853,0.43530852241134155,0.9270815910799206]}},{"name":"sphere material 5_8","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.2836857369013548,0.5909551882727844,0.4467830274793885]},"fuzz":0.2582991945302586},{"name":"sphere material 5_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6669985554610809,0.9724960181473263,0.9370357682140542]}},{"name":"sphere material 5_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2581118821855448,0.5216999256663746,0.48265561278557834]}},{"name":"sphere material 6_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7864830707602284,0.6612360472984864,0.6297185128300669]}},{"name":"sphere material 6_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6261018588904015,0.35343391060583484,0.6143543009907035]}},{"name":"sphere material 6_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.347573759667154,0.940449707080055,0.5565107047095788]}},{"name":"sphere material 6_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.36092066349770247,0.7869618176842719,0.3747781267777599]}},{"name":"sphere material 6_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.31968305586270684,0.8151990880118729,0.5506472650761516]}},{"name":"sphere material 6_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6729166862817701,0.14174140207765573,0.9891028950095402]}},{"name":"sphere material 6_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.11667523616994546,0.46970162404453064,0.6569719080858738]}},{"name":"sphere material 6_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7122335110625728,0.7970303847754114,0.9834360487812681]}},{"name":"sphere material 6_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8926828031062795,0.43207501491822975,0.1876310976558211]}},{"name":"sphere material 6_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.12528923658159918,0.9196400727243221,0.02688047924080661]}},{"name":"sphere material 6_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5125779839753373,0.5138681450510036,0.5500496087563405]}},{"name":"sphere material 6_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9856387509449571,0.9628693845510021,0.6487630215580815]}},{"name":"sphere material 6_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.31508811773210565,0.6638911553964078,0.989928009088151]}},{"name":"sphere material 6_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.011333025981187683,0.48083611233704704,0.10391788342675956]}},{"name":"sphere material 6_3","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.43715327577720653,0.9822039663807858,0.5362571616725711]},"fuzz":0.12108441064572695},{"name":"sphere material 6_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.12854846012228105,0.06153915988454495,0.2620453146464268]}},{"name":"sphere material 6_5","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.17975097359482084,0.49823586207140846,0.9284600895624484]},"fuzz":0.397073945364249},{"name":"sphere material 6_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1491209357267671,0.051267705481725434,0.528641304187145]}},{"name":"sphere material 6_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8095443404420684,0.20462366615764438,0.20868651981947162]}},{"name":"sphere material 6_9","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7893510664921242,0.508145885189079,0.9754473798420755]},"fuzz":0.09506543238184884},{"name":"sphere material 6_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4994421126655353,0.7426371022315901,0.40963848358744825]}},{"name":"sphere material 7_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.09940221659871518,0.3230891400360214,0.8133489619650829]}},{"name":"sphere material 7_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3034828782063905,0.6103894710427706,0.39238067972486235]}},{"name":"sphere material 7_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6766157865974181,0.6509908932619142,0.6880796829720981]}},{"name":"sphere material 7_-8","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7898051470484233,0.6141653160030824,0.21927314212957216]},"fuzz":0.2762854193412143},{"name":"sphere material 7_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7342370021463793,0.12050101768336785,0.09100576601422472]}},{"name":"sphere material 7_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.07286863762959461,0.778079413564402,0.6123905523317661]}},{"name":"sphere material 7_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7427174284649425,0.06958561182238054,0.5808198727939802]}},{"name":"sphere material 7_-4","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.46241722387003614,0.6514099632787784,0.45264502021535113]},"fuzz":0.2106047121254061},{"name":"sphere material 7_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.29759378297737027,0.4744120433637513,0.9903115969375402]}},{"name":"sphere material 7_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9113296634365236,0.5456998687860517,0.17795173052597435]}},{"name":"sphere material 7_-1","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.2583389375741798,0.059795048600862044,0.575011714536084]},"fuzz":0.09753159749622331},{"name":"sphere material 7_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7542831511127672,0.0756734173829523,0.3419289019933003]}},{"name":"sphere material 7_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6365002890807998,0.9450667323909656,0.9757912954429919]}},{"name":"sphere material 7_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2627365126967145,0.922637099033661,0.7361537306706472]}},{"name":"sphere material 7_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.12322498919116476,0.10048363916198166,0.7975804554823716]}},{"name":"sphere material 7_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6687301500159617,0.10954189876965237,0.5072967069672796]}},{"name":"sphere material 7_5","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.9688358161082846,0.26238495819433916,0.16231376800543607]},"fuzz":0.23409349412930902},{"name":"sphere material 7_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3371304087550726,0.016982128415118147,0.31492018817590695]}},{"name":"sphere material 7_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5996195124780384,0.5365036257560596,0.02401937125032738]}},{"name":"sphere material 7_8","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.04053990162776544,0.48305393191185186,0.9425320031591684]},"fuzz":0.4993186866107511},{"name":"sphere material 7_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9209006868756646,0.31999637779851464,0.7202289115154832]}},{"name":"sphere material 8_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.47102145197978595,0.18909277456123497,0.0950229543667982]}},{"name":"sphere material 8_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.36904051797033843,0.9317168663836042,0.03877326523226765]}},{"name":"sphere material 8_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5077988614781554,0.256707186036659,0.9774561200509062]}},{"name":"sphere material 8_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3058387090561103,0.18658600053714092,0.6010247644925721]}},{"name":"sphere material 8_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7532065870133573,0.9095097228520508,0.14814425162939426]}},{"name":"sphere material 8_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8951977012581294,0.14950121027073338,0.22598826638596403]}},{"name":"sphere material 8_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9234435014986204,0.9029142196594031,0.2931332887554057]}},{"name":"sphere material 8_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.41557255095172807,0.22830296939270145,0.8153026703064603]}},{"name":"sphere material 8_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3990938591590649,0.03195213015626397,0.8113755740695894]}},{"name":"sphere material 8_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8436365967510799,0.35602628912225875,0.4985055864132235]}},{"name":"sphere material 8_-1","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.025720506994741488,0.6407311834918878,0.20219428153401742]},"fuzz":0.14806400892366867},{"name":"sphere material 8_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.47265707245498745,0.96623449770261,0.5211149506442614]}},{"name":"sphere material 8_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8730911019088865,0.5194486288186977,0.7824619501901919]}},{"name":"sphere material 8_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.08841736546203771,0.14912881776409947,0.10567249893672148]}},{"name":"sphere material 8_3","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.4422768565580031,0.4001386068521833,0.8236204113613304]},"fuzz":0.26041991680009713},{"name":"sphere material 8_4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6331651675756207,0.5450725707042237,0.824201224081105]}},{"name":"sphere material 8_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.23475611153754916,0.4607654745294878,0.47266366375714997]}},{"name":"sphere material 8_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.1889709991928774,0.7264705362957184,0.04017156540332478]}},{"name":"sphere material 8_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5002377069771258,0.826841759154491,0.264287121615844]}},{"name":"sphere material 8_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9697379011333034,0.7441373288184727,0.05471209075546679]}},{"name":"sphere material 8_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.21785982708506735,0.027552607823769337,0.8598971278010397]}},{"name":"sphere material 9_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.03512213059090863,0.7530540922473419,0.16412813197746168]}},{"name":"sphere material 9_-10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.14453616877583197,0.18274866225924224,0.9917552425383835]}},{"name":"sphere material 9_-9","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.5542254959431319,0.18664040499221612,0.1369331484462366]},"fuzz":0.2143749224589363},{"name":"sphere material 9_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9055364487655224,0.2889093248038943,0.22244639268071298]}},{"name":"sphere material 9_-7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6782303771078411,0.268995090998039,0.95678569263647]}},{"name":"sphere material 9_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.052881919892487916,0.5412756338601667,0.051918094196280684]}},{"name":"sphere material 9_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9515314605581462,0.35174183776343115,0.5355792197073905]}},{"name":"sphere material 9_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7786791056853475,0.35602866682682244,0.8485528553314832]}},{"name":"sphere material 9_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8035162554324,0.14859013056415704,0.9078577774636658]}},{"name":"sphere material 9_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6607629733388538,0.6493314057772404,0.2273498982525619]}},{"name":"sphere material 9_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.001846482021608864,0.7842165860018471,0.8306288850127823]}},{"name":"sphere material 9_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.4622708071226178,0.41006991174521645,0.6086706544682419]}},{"name":"sphere material 9_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6779642118654565,0.18545103874605262,0.6675564237267722]}},{"name":"sphere material 9_2","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.48128802802054604,0.5480439870836828,0.504468496127729]},"fuzz":0.004896227249901908},{"name":"sphere material 9_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8544859091097277,0.2766243469233862,0.5209813235270162]}},{"name":"sphere material 9_4","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.176734347160024,0.31995238451156416,0.45542300131765834]},"fuzz":0.11131460161489592},{"name":"sphere material 9_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6459714768570146,0.06109444179864654,0.7984406233796328]}},{"name":"sphere material 9_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.678980737118227,0.5337824810751002,0.9162082448471303]}},{"name":"sphere material 9_7","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8246746925243997,0.19025007899139945,0.39582962123083854]},"fuzz":0.014002758885300115},{"name":"sphere material 9_8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.32975741853308294,0.26731393344827525,0.39793020014369107]}},{"name":"sphere material 9_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3160491217268626,0.7553135257767574,0.5693593027342745]}},{"name":"sphere material 9_10","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2568084824653034,0.09798432999033357,0.6648735937755572]}},{"name":"sphere material 10_-11","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9778844438216834,0.007672326984857092,0.9880057607333377]}},{"name":"sphere material 10_-9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3144407451094622,0.41402726140740187,0.058816339144031726]}},{"name":"sphere material 10_-8","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.8973263105987375,0.4366685686836205,0.7119725031029625]}},{"name":"sphere material 10_-7","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.6015072346744808,0.1397695240843546,0.6872367960551353]},"fuzz":0.4750977455200156},{"name":"sphere material 10_-6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.3300205999966379,0.657613819098507,0.27985295444037717]}},{"name":"sphere material 10_-5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9571038549054702,0.43987143628414915,0.8364307797709614]}},{"name":"sphere material 10_-4","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2602096580407065,0.4518533477620348,0.8768306753014605]}},{"name":"sphere material 10_-3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.054602059015878446,0.026151162098686065,0.7175786183080382]}},{"name":"sphere material 10_-2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.5199506242492813,0.9722593056906084,0.019198831673859607]}},{"name":"sphere material 10_-1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.9125220492060138,0.5884711351849004,0.6827575946009343]}},{"name":"sphere material 10_0","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.26256867011715146,0.8158965068657462,0.7204629385836312]}},{"name":"sphere material 10_1","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.23659821578643792,0.6248014468739345,0.4540146399982894]}},{"name":"sphere material 10_2","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.0009332106021511244,0.6936467908520045,0.8928310075993191]}},{"name":"sphere material 10_3","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.24381308550437075,0.8760711517524098,0.15496980841417152]}},{"name":"sphere material 10_4","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.8792565355592974,0.6612984253836565,0.00531857707700234]},"fuzz":0.2626279633745995},{"name":"sphere material 10_5","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.6478695007257402,0.13767660481506572,0.7134579644797276]}},{"name":"sphere material 10_6","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.2673902834231936,0.9788201243438099,0.03533026199781397]}},{"name":"sphere material 10_7","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7611457059802429,0.050402325221350575,0.38797994583657025]}},{"name":"sphere material 10_8","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7162107300947627,0.45782946308667816,0.381355361920624]},"fuzz":0.4220697163957583},{"name":"sphere material 10_9","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7944032509700072,0.014315776808507819,0.10779247592311814]}},{"name":"sphere material 10_10","kind":"Metal","albedo":{"kind":"SolidColor","color":[0.7989406814222728,0.9589861225545462,0.2038085521993307]},"fuzz":0.42873490466407427}]} \ No newline at end of file diff --git a/scenes/scene.json b/scenes/scene.json index adb29303..2122a32f 100644 --- a/scenes/scene.json +++ b/scenes/scene.json @@ -18,13 +18,7 @@ "rotation": [-90, 180, 0], "center": [270, 300, 600], "scale": 15, - "material": { - "kind": "Metal", - "albedo": { - "kind": "SolidColor", - "color": [0.9, 0.6, 0.3] - } - } + "material": "gold" }, { "kind": "STL", @@ -32,13 +26,7 @@ "comment": "teapot", "rotation": [-90, 180, 0], "center": [650, 0, 100], - "material": { - "kind": "Lambertian", - "albedo": { - "kind": "SolidColor", - "color": [0.5, 0.9, 0.7] - } - }, + "material": "teal", "scale": 20 }, { @@ -48,13 +36,7 @@ "scale": 3, "center": [-80, -15, 300], "rotation": [-90, 180, 0], - "material": { - "kind": "Lambertian", - "albedo": { - "kind": "SolidColor", - "color": [0.7, 0.3, 0.5] - } - } + "material": "pink" }, { "kind": "Translate", @@ -70,13 +52,7 @@ "kind": "Boxy", "corner_0": [0, 0, 0], "corner_1": [200, 400, 200], - "material": { - "kind": "Isotropic", - "albedo": { - "kind": "SolidColor", - "color": [0.9, 0.9, 0.9] - } - } + "material": "fog" } }, "texture": { @@ -90,14 +66,7 @@ "comment": "metal sphere", "radius": 90, "center": [400, 90, 300], - "material": { - "kind": "Metal", - "fuzz": 0.05, - "albedo": { - "kind": "SolidColor", - "color": [0.7, 0.7, 0.7] - } - } + "material": "metal sphere" }, { "kind": "Quad", @@ -105,68 +74,92 @@ "u": [10000, 0, 0], "v": [0, 0, 10000], "comment": "floor", - "material": { - "kind": "Metal", - "albedo": { - "kind": "SurfaceChecker", - "even": [0.9, 0.9, 0.9], - "odd": [0.1, 0.1, 0.1], - "density": 100 - }, - "fuzz": 0.015 - } + "material": "metal floor" }, { "kind": "Quad", + "priority": true, "q": [0, 700, -100], "u": [600, 0, 0], "v": [0, 0, 300], - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [7, 7, 7] - } - }, + "material": "lamp", "comment": "big ceiling light" }, { "kind": "Sphere", + "priority": true, "center": [190, 120, 190], "radius": 90, - "material": { - "kind": "Dielectric", - "refractive_index": 1.5, - "color": [1, 1, 1] - }, + "material": "glass", "comment": "glass sphere" } ], - "priority_objects": [ + "materials": [ { - "kind": "Quad", - "q": [113, 554, 127], - "u": [330, 0, 0], - "v": [0, 0, 305], - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [7, 7, 7] - } - }, - "comment": "big ceiling light" + "name": "gold", + "kind": "Metal", + "albedo": { + "kind": "SolidColor", + "color": [0.9, 0.6, 0.3] + } }, { - "kind": "Sphere", - "center": [190, 120, 190], - "radius": 90, - "material": { - "kind": "Dielectric", - "refractive_index": 1.5, - "color": [1, 1, 1] + "name": "teal", + "kind": "Lambertian", + "albedo": { + "kind": "SolidColor", + "color": [0.5, 0.9, 0.7] + } + }, + { + "name": "pink", + "kind": "Lambertian", + "albedo": { + "kind": "SolidColor", + "color": [0.7, 0.3, 0.5] + } + }, + { + "name": "fog", + "kind": "Isotropic", + "albedo": { + "kind": "SolidColor", + "color": [0.9, 0.9, 0.9] + } + }, + { + "name": "metal sphere", + "kind": "Metal", + "fuzz": 0.05, + "albedo": { + "kind": "SolidColor", + "color": [0.7, 0.7, 0.7] + } + }, + { + "name": "metal floor", + "kind": "Metal", + "albedo": { + "kind": "SurfaceChecker", + "even": [0.9, 0.9, 0.9], + "odd": [0.1, 0.1, 0.1], + "density": 100 }, - "comment": "glass sphere" + "fuzz": 0.015 + }, + { + "name": "lamp", + "kind": "DiffuseLight", + "emit": { + "kind": "SolidColor", + "color": [7, 7, 7] + } + }, + { + "name": "glass", + "kind": "Dielectric", + "refractive_index": 1.5, + "color": [1, 1, 1] } ] } diff --git a/scenes/spatial_checker_smoke.json b/scenes/spatial_checker_smoke.json index 996cf4b9..890887f4 100644 --- a/scenes/spatial_checker_smoke.json +++ b/scenes/spatial_checker_smoke.json @@ -13,16 +13,11 @@ "objects": [ { "kind": "Quad", + "priority": true, "q": [-100, 80, -100], "u": [200, 0, 0], "v": [0, 0, 100], - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [2.5, 2.5, 2.5] - } - } + "material": "lamp" }, { "kind": "ConstantMedium", @@ -40,18 +35,13 @@ } } ], - "priority_objects": [ + "materials": [ { - "kind": "Quad", - "q": [-100, 80, -100], - "u": [200, 0, 0], - "v": [0, 0, 100], - "material": { - "kind": "DiffuseLight", - "emit": { - "kind": "SolidColor", - "color": [2.5, 2.5, 2.5] - } + "name": "lamp", + "kind": "DiffuseLight", + "emit": { + "kind": "SolidColor", + "color": [2.5, 2.5, 2.5] } } ] diff --git a/scenes/the_next_week.js b/scenes/the_next_week.js index a396a2dc..7dac5115 100644 --- a/scenes/the_next_week.js +++ b/scenes/the_next_week.js @@ -20,16 +20,18 @@ let scene = { }, background_color: [0.0, 0.0, 0.0], objects: [], - priority_objects: [], + materials: [], }; let ground = { + name: "ground material", kind: "Lambertian", albedo: { kind: "SolidColor", color: [0.48, 0.83, 0.53], }, }; +scene.materials.push(ground); let boxes = []; let boxes_per_side = 20; @@ -48,7 +50,7 @@ for (let i = 0; i < boxes_per_side; i++) { kind: "Boxy", corner_0: [x0, y0, z0], corner_1: [x1, y1, z1], - material: ground, + material: "ground material", }; boxes.push(box); @@ -56,22 +58,34 @@ for (let i = 0; i < boxes_per_side; i++) { } scene.objects.push(...boxes); +let lamp_material = { + name: "big lamp", + kind: "DiffuseLight", + emit: { + kind: "SolidColor", + color: [7.0, 7.0, 7.0], + }, +}; +scene.materials.push(lamp_material); let light = { kind: "Quad", + priority: true, q: [123.0, 554.0, 147.0], u: [300.0, 0.0, 0.0], v: [0.0, 0.0, 265.0], - material: { - kind: "DiffuseLight", - emit: { - kind: "SolidColor", - color: [7.0, 7.0, 7.0], - }, - }, + material: "big lamp", }; scene.objects.push(light); -scene.priority_objects.push(light); +let moving_sphere_material = { + name: "moving sphere material", + kind: "Lambertian", + albedo: { + kind: "SolidColor", + color: [0.7, 0.3, 0.1], + }, +}; +scene.materials.push(moving_sphere_material); let moving_sphere = { kind: "MovingSphere", center_0: [400.0, 400.0, 200.0], @@ -79,39 +93,39 @@ let moving_sphere = { time_0, time_1, radius: 50.0, - material: { - kind: "Lambertian", - albedo: { - kind: "SolidColor", - color: [0.7, 0.3, 0.1], - }, - }, + material: "moving sphere material", }; scene.objects.push(moving_sphere); +let glass = { + name: "glass", + kind: "Dielectric", + refractive_index: 1.5, +}; +scene.materials.push(glass); let glass_sphere = { kind: "Sphere", center: [260.0, 150.0, 45.0], radius: 50.0, - material: { - kind: "Dielectric", - refractive_index: 1.5, - }, + material: "glass", }; scene.objects.push(glass_sphere); +let matte_metal = { + name: "matte metal", + kind: "Metal", + fuzz: 1.0, + albedo: { + kind: "SolidColor", + color: [0.8, 0.8, 0.9], + }, +}; +scene.materials.push(matte_metal); let half_matte_metal_sphere = { kind: "Sphere", center: [0.0, 150.0, 145.0], radius: 50.0, - material: { - kind: "Metal", - fuzz: 1.0, - albedo: { - kind: "SolidColor", - color: [0.8, 0.8, 0.9], - }, - }, + material: "matte metal", }; scene.objects.push(half_matte_metal_sphere); @@ -120,10 +134,7 @@ let blue_sphere_glass = { kind: "Sphere", center: [360.0, 150.0, 145.0], radius: 70.0, - material: { - kind: "Dielectric", - refractive_index: 1.5, - }, + material: "glass", }; scene.objects.push(blue_sphere_glass); @@ -157,22 +168,6 @@ let mist = { }; scene.objects.push(mist); -let marble = { - kind: "Sphere", - center: [220.0, 280.0, 300.0], - radius: 80.0, - material: { - kind: "Lambertian", - // albedo: { - // Originally NoiseTexture. Removed support for it. - // NoiseTexture: { - // scale: 0.1, - // }, - // }, - }, -}; -scene.objects.push(marble); - // Sphere-rasterized pseudo box let spherebox = { kind: "ObjectList", @@ -180,12 +175,14 @@ let spherebox = { }; let num_spheres = 1000; let white = { + name: "white", kind: "Lambertian", albedo: { kind: "SolidColor", color: [0.73, 0.73, 0.73], }, }; +scene.materials.push(white); for (let i = 0; i < num_spheres; i++) { let sphere = { kind: "Sphere", @@ -195,7 +192,7 @@ for (let i = 0; i < num_spheres; i++) { random_float(0.0, 165.0), ], radius: 10.0, - material: white, + material: "white", }; spherebox.objects.push(sphere); } diff --git a/scenes/the_next_week.json b/scenes/the_next_week.json index 3d0f95ad..d8fe7adc 100644 --- a/scenes/the_next_week.json +++ b/scenes/the_next_week.json @@ -1 +1 @@ -{"time_0":0,"time_1":1,"camera":{"look_from":[478,278,-600],"look_at":[278,278,0],"up":[0,1,0],"vertical_fov":40,"aperture":0,"focus_distance":10},"background_color":[0,0,0],"objects":[{"kind":"Boxy","corner_0":[-1000,0,-1000],"corner_1":[-900.00001,48.23445795864892,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,-900],"corner_1":[-900.00001,75.22089807180825,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,-800],"corner_1":[-900.00001,92.65529521040845,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,-700],"corner_1":[-900.00001,79.92640926871442,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,-600],"corner_1":[-900.00001,94.09779828524572,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,-500],"corner_1":[-900.00001,19.309707856121236,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,-400],"corner_1":[-900.00001,60.25740468502418,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,-300],"corner_1":[-900.00001,87.17217347992687,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,-200],"corner_1":[-900.00001,21.14264890062153,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,-100],"corner_1":[-900.00001,97.03389167583589,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,0],"corner_1":[-900.00001,82.33203407701156,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,100],"corner_1":[-900.00001,43.62024456958719,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,200],"corner_1":[-900.00001,28.994088060141767,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,300],"corner_1":[-900.00001,46.57903452635164,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,400],"corner_1":[-900.00001,10.850490226976444,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,500],"corner_1":[-900.00001,23.420217299292098,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,600],"corner_1":[-900.00001,21.13685527319226,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,700],"corner_1":[-900.00001,23.136897420637073,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,800],"corner_1":[-900.00001,54.48542869909481,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-1000,0,900],"corner_1":[-900.00001,74.81627835557718,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,-1000],"corner_1":[-800.00001,91.54977063952576,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,-900],"corner_1":[-800.00001,64.03481677155277,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,-800],"corner_1":[-800.00001,43.36380489158256,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,-700],"corner_1":[-800.00001,54.239258885649754,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,-600],"corner_1":[-800.00001,61.89749034336843,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,-500],"corner_1":[-800.00001,67.65471748604693,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,-400],"corner_1":[-800.00001,89.14194660121008,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,-300],"corner_1":[-800.00001,91.4452108836599,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,-200],"corner_1":[-800.00001,11.246822475009294,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,-100],"corner_1":[-800.00001,30.125606884700968,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,0],"corner_1":[-800.00001,47.68201241900229,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,100],"corner_1":[-800.00001,33.75812039267023,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,200],"corner_1":[-800.00001,37.25391742220409,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,300],"corner_1":[-800.00001,77.07810408513244,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,400],"corner_1":[-800.00001,77.88442421529429,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,500],"corner_1":[-800.00001,20.27225409737904,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,600],"corner_1":[-800.00001,99.71991295636099,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,700],"corner_1":[-800.00001,39.94867292123854,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,800],"corner_1":[-800.00001,65.03124667587969,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-900,0,900],"corner_1":[-800.00001,50.57345498538851,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,-1000],"corner_1":[-700.00001,15.892885720759612,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,-900],"corner_1":[-700.00001,16.951605826394825,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,-800],"corner_1":[-700.00001,60.28621788330996,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,-700],"corner_1":[-700.00001,17.325897001313077,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,-600],"corner_1":[-700.00001,55.36984406323059,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,-500],"corner_1":[-700.00001,85.68416275787756,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,-400],"corner_1":[-700.00001,76.52811215370522,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,-300],"corner_1":[-700.00001,44.57803668569929,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,-200],"corner_1":[-700.00001,54.0711023147002,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,-100],"corner_1":[-700.00001,78.14124449139959,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,0],"corner_1":[-700.00001,99.50309176160455,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,100],"corner_1":[-700.00001,86.12771570815562,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,200],"corner_1":[-700.00001,47.612497596427254,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,300],"corner_1":[-700.00001,49.66524661752542,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,400],"corner_1":[-700.00001,58.20086504541291,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,500],"corner_1":[-700.00001,89.29633910595886,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,600],"corner_1":[-700.00001,22.184095817990023,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,700],"corner_1":[-700.00001,38.460429262151955,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,800],"corner_1":[-700.00001,36.11995864333201,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-800,0,900],"corner_1":[-700.00001,15.505221230020723,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,-1000],"corner_1":[-600.00001,76.47101806682578,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,-900],"corner_1":[-600.00001,98.91487888154651,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,-800],"corner_1":[-600.00001,20.13290272157152,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,-700],"corner_1":[-600.00001,94.67632759246689,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,-600],"corner_1":[-600.00001,19.282532399315336,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,-500],"corner_1":[-600.00001,33.36391139170573,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,-400],"corner_1":[-600.00001,70.42277671712608,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,-300],"corner_1":[-600.00001,14.317748688100298,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,-200],"corner_1":[-600.00001,33.94416259998485,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,-100],"corner_1":[-600.00001,81.41691901561283,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,0],"corner_1":[-600.00001,41.16483810395973,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,100],"corner_1":[-600.00001,59.92615518935469,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,200],"corner_1":[-600.00001,77.99368664728313,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,300],"corner_1":[-600.00001,62.42348968796896,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,400],"corner_1":[-600.00001,87.69567474001175,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,500],"corner_1":[-600.00001,12.458582649816401,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,600],"corner_1":[-600.00001,32.245608051384934,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,700],"corner_1":[-600.00001,21.517533488918176,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,800],"corner_1":[-600.00001,35.9266367687587,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-700,0,900],"corner_1":[-600.00001,24.95169015506971,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,-1000],"corner_1":[-500.00001,11.142292473189771,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,-900],"corner_1":[-500.00001,65.71216231858736,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,-800],"corner_1":[-500.00001,36.932592208364866,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,-700],"corner_1":[-500.00001,73.66010948326897,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,-600],"corner_1":[-500.00001,52.14810103961901,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,-500],"corner_1":[-500.00001,33.44845701237391,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,-400],"corner_1":[-500.00001,17.077353119122627,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,-300],"corner_1":[-500.00001,84.26679796556715,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,-200],"corner_1":[-500.00001,86.01295985142262,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,-100],"corner_1":[-500.00001,28.650091829851394,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,0],"corner_1":[-500.00001,93.15832805111968,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,100],"corner_1":[-500.00001,76.53697866127905,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,200],"corner_1":[-500.00001,42.52255969353417,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,300],"corner_1":[-500.00001,27.433913399709667,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,400],"corner_1":[-500.00001,24.344123664301193,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,500],"corner_1":[-500.00001,44.00458970401378,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,600],"corner_1":[-500.00001,50.75418649858238,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,700],"corner_1":[-500.00001,30.120868643874367,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,800],"corner_1":[-500.00001,10.060676257234803,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-600,0,900],"corner_1":[-500.00001,41.78178295876556,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,-1000],"corner_1":[-400.00001,45.24589845624174,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,-900],"corner_1":[-400.00001,33.6466611549354,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,-800],"corner_1":[-400.00001,48.07857329464554,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,-700],"corner_1":[-400.00001,56.029587035279114,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,-600],"corner_1":[-400.00001,96.73447391993105,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,-500],"corner_1":[-400.00001,95.84678271698134,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,-400],"corner_1":[-400.00001,72.61414439323013,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,-300],"corner_1":[-400.00001,73.26230674107167,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,-200],"corner_1":[-400.00001,70.09425139726845,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,-100],"corner_1":[-400.00001,54.622636086974296,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,0],"corner_1":[-400.00001,12.700119977771962,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,100],"corner_1":[-400.00001,30.836993330521732,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,200],"corner_1":[-400.00001,32.72157824522118,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,300],"corner_1":[-400.00001,11.318363237426368,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,400],"corner_1":[-400.00001,43.46319747092787,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,500],"corner_1":[-400.00001,70.17647195397228,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,600],"corner_1":[-400.00001,40.574094459402474,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,700],"corner_1":[-400.00001,59.43226949328715,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,800],"corner_1":[-400.00001,40.498883916463484,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-500,0,900],"corner_1":[-400.00001,21.707232159446427,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,-1000],"corner_1":[-300.00001,34.38532324751168,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,-900],"corner_1":[-300.00001,23.60233432430671,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,-800],"corner_1":[-300.00001,15.757865292501599,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,-700],"corner_1":[-300.00001,67.47248422825352,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,-600],"corner_1":[-300.00001,62.741831234014136,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,-500],"corner_1":[-300.00001,16.30541704925396,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,-400],"corner_1":[-300.00001,43.226725935547634,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,-300],"corner_1":[-300.00001,18.36630933935806,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,-200],"corner_1":[-300.00001,56.68066207574316,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,-100],"corner_1":[-300.00001,72.18641926550434,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,0],"corner_1":[-300.00001,46.888651185650325,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,100],"corner_1":[-300.00001,23.786465562837407,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,200],"corner_1":[-300.00001,51.09611880506755,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,300],"corner_1":[-300.00001,46.734662148751724,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,400],"corner_1":[-300.00001,35.01965324685718,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,500],"corner_1":[-300.00001,38.70022277329771,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,600],"corner_1":[-300.00001,35.6772080338219,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,700],"corner_1":[-300.00001,69.9982465103934,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,800],"corner_1":[-300.00001,52.9473854401087,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-400,0,900],"corner_1":[-300.00001,100.97125471180955,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,-1000],"corner_1":[-200.00001,85.70920631555964,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,-900],"corner_1":[-200.00001,19.205501569982022,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,-800],"corner_1":[-200.00001,47.649547771939886,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,-700],"corner_1":[-200.00001,54.13135687393146,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,-600],"corner_1":[-200.00001,67.8352659020371,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,-500],"corner_1":[-200.00001,37.97083404881255,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,-400],"corner_1":[-200.00001,93.82431122920346,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,-300],"corner_1":[-200.00001,55.327275853425796,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,-200],"corner_1":[-200.00001,34.91448685460351,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,-100],"corner_1":[-200.00001,97.95473463248125,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,0],"corner_1":[-200.00001,76.50881322516524,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,100],"corner_1":[-200.00001,49.6614967302247,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,200],"corner_1":[-200.00001,90.40012770025055,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,300],"corner_1":[-200.00001,10.729862579974174,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,400],"corner_1":[-200.00001,96.06995468161062,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,500],"corner_1":[-200.00001,13.188609057740944,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,600],"corner_1":[-200.00001,68.22316630643769,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,700],"corner_1":[-200.00001,37.14239421606414,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,800],"corner_1":[-200.00001,53.78542934318262,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-300,0,900],"corner_1":[-200.00001,86.75989971309,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,-1000],"corner_1":[-100.00001,90.03615507036886,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,-900],"corner_1":[-100.00001,16.244320984541524,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,-800],"corner_1":[-100.00001,16.90748083487708,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,-700],"corner_1":[-100.00001,24.19002594723872,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,-600],"corner_1":[-100.00001,98.43358893487874,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,-500],"corner_1":[-100.00001,50.9015534192371,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,-400],"corner_1":[-100.00001,69.6331282461929,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,-300],"corner_1":[-100.00001,23.07218686825839,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,-200],"corner_1":[-100.00001,32.86459618055589,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,-100],"corner_1":[-100.00001,17.51941423625272,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,0],"corner_1":[-100.00001,60.159407369450655,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,100],"corner_1":[-100.00001,86.82909259711417,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,200],"corner_1":[-100.00001,39.684352921085306,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,300],"corner_1":[-100.00001,42.087952090978604,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,400],"corner_1":[-100.00001,28.92906063952302,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,500],"corner_1":[-100.00001,20.297360088454685,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,600],"corner_1":[-100.00001,15.671869588000341,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,700],"corner_1":[-100.00001,19.689517847854184,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,800],"corner_1":[-100.00001,31.910167766134098,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-200,0,900],"corner_1":[-100.00001,44.565835063976905,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,-1000],"corner_1":[-0.00001,20.530981444357984,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,-900],"corner_1":[-0.00001,58.62531052304495,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,-800],"corner_1":[-0.00001,38.962683879727265,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,-700],"corner_1":[-0.00001,47.317684891617546,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,-600],"corner_1":[-0.00001,37.57355573862365,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,-500],"corner_1":[-0.00001,34.72572606110457,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,-400],"corner_1":[-0.00001,57.33797945908727,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,-300],"corner_1":[-0.00001,81.47905128528797,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,-200],"corner_1":[-0.00001,84.88553909895762,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,-100],"corner_1":[-0.00001,20.200981438946364,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,0],"corner_1":[-0.00001,76.23795286940222,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,100],"corner_1":[-0.00001,75.49783049754923,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,200],"corner_1":[-0.00001,21.992045192377045,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,300],"corner_1":[-0.00001,91.34124550215319,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,400],"corner_1":[-0.00001,65.28446361282164,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,500],"corner_1":[-0.00001,96.37368349509204,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,600],"corner_1":[-0.00001,14.968658533780225,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,700],"corner_1":[-0.00001,39.45901355723322,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,800],"corner_1":[-0.00001,15.370317402371303,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[-100,0,900],"corner_1":[-0.00001,45.57237035742729,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,-1000],"corner_1":[99.99999,21.591877325553398,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,-900],"corner_1":[99.99999,27.24320080895719,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,-800],"corner_1":[99.99999,37.728508288596174,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,-700],"corner_1":[99.99999,17.439539770300094,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,-600],"corner_1":[99.99999,33.04290918457118,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,-500],"corner_1":[99.99999,65.8727793065355,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,-400],"corner_1":[99.99999,30.928427714450198,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,-300],"corner_1":[99.99999,52.43304945694399,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,-200],"corner_1":[99.99999,100.38460886218563,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,-100],"corner_1":[99.99999,32.05545080578763,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,0],"corner_1":[99.99999,39.431838045240006,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,100],"corner_1":[99.99999,45.20296008830265,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,200],"corner_1":[99.99999,49.01843782707935,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,300],"corner_1":[99.99999,32.503556203818576,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,400],"corner_1":[99.99999,60.6750910531664,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,500],"corner_1":[99.99999,53.27446690410059,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,600],"corner_1":[99.99999,10.525381272783937,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,700],"corner_1":[99.99999,32.534333046192195,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,800],"corner_1":[99.99999,90.23588460735775,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[0,0,900],"corner_1":[99.99999,49.70105470310613,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,-1000],"corner_1":[199.99999,64.79824020582333,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,-900],"corner_1":[199.99999,36.88007588090012,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,-800],"corner_1":[199.99999,22.70775771578119,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,-700],"corner_1":[199.99999,45.19053886701885,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,-600],"corner_1":[199.99999,75.98222666561735,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,-500],"corner_1":[199.99999,55.25075141911468,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,-400],"corner_1":[199.99999,99.35985409356957,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,-300],"corner_1":[199.99999,100.61509485717892,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,-200],"corner_1":[199.99999,52.55612738277386,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,-100],"corner_1":[199.99999,54.36817959384995,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,0],"corner_1":[199.99999,96.11871559157159,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,100],"corner_1":[199.99999,15.862984715636035,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,200],"corner_1":[199.99999,33.49002789730546,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,300],"corner_1":[199.99999,67.61521571752948,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,400],"corner_1":[199.99999,95.60169875369533,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,500],"corner_1":[199.99999,60.27823716639402,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,600],"corner_1":[199.99999,17.085665847336966,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,700],"corner_1":[199.99999,18.068087626407923,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,800],"corner_1":[199.99999,12.720939404911725,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[100,0,900],"corner_1":[199.99999,79.95484447758665,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,-1000],"corner_1":[299.99999,82.51038575695208,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,-900],"corner_1":[299.99999,84.78879888936028,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,-800],"corner_1":[299.99999,39.477049687311,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,-700],"corner_1":[299.99999,10.232739396619385,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,-600],"corner_1":[299.99999,46.01781267933763,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,-500],"corner_1":[299.99999,87.63254762848234,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,-400],"corner_1":[299.99999,29.30540428965927,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,-300],"corner_1":[299.99999,33.93499367043919,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,-200],"corner_1":[299.99999,15.892543207836884,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,-100],"corner_1":[299.99999,13.543919215138446,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,0],"corner_1":[299.99999,90.98756851341089,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,100],"corner_1":[299.99999,39.14494154001849,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,200],"corner_1":[299.99999,57.04760615287602,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,300],"corner_1":[299.99999,72.33118149294955,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,400],"corner_1":[299.99999,22.11198404110687,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,500],"corner_1":[299.99999,79.01422646452748,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,600],"corner_1":[299.99999,41.37116659546261,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,700],"corner_1":[299.99999,50.929014925371646,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,800],"corner_1":[299.99999,51.77668365577312,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[200,0,900],"corner_1":[299.99999,35.10657784404659,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,-1000],"corner_1":[399.99999,100.82059283731799,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,-900],"corner_1":[399.99999,54.6257209528903,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,-800],"corner_1":[399.99999,50.33750147546825,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,-700],"corner_1":[399.99999,46.86825825393533,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,-600],"corner_1":[399.99999,83.71702270225389,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,-500],"corner_1":[399.99999,50.13957773046225,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,-400],"corner_1":[399.99999,54.3428581224645,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,-300],"corner_1":[399.99999,47.006527144350564,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,-200],"corner_1":[399.99999,41.08982826595522,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,-100],"corner_1":[399.99999,69.83862730958437,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,0],"corner_1":[399.99999,54.62750809780318,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,100],"corner_1":[399.99999,51.01624957008856,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,200],"corner_1":[399.99999,32.780226001411165,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,300],"corner_1":[399.99999,27.45813916453091,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,400],"corner_1":[399.99999,34.380658753043264,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,500],"corner_1":[399.99999,65.95574650580477,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,600],"corner_1":[399.99999,28.971505655564737,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,700],"corner_1":[399.99999,66.73827359535224,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,800],"corner_1":[399.99999,32.6769989700893,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[300,0,900],"corner_1":[399.99999,24.938480277894598,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,-1000],"corner_1":[499.99999,72.37546591375097,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,-900],"corner_1":[499.99999,52.27970297076978,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,-800],"corner_1":[499.99999,89.15399986982159,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,-700],"corner_1":[499.99999,21.529622961839248,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,-600],"corner_1":[499.99999,89.15975040612393,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,-500],"corner_1":[499.99999,60.38146257617862,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,-400],"corner_1":[499.99999,59.84775416098463,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,-300],"corner_1":[499.99999,84.45580676542771,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,-200],"corner_1":[499.99999,60.21600126642121,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,-100],"corner_1":[499.99999,12.369227791788948,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,0],"corner_1":[499.99999,51.4027908866796,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,100],"corner_1":[499.99999,92.59434436950345,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,200],"corner_1":[499.99999,91.82492368146704,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,300],"corner_1":[499.99999,20.652564403145067,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,400],"corner_1":[499.99999,47.3052300606432,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,500],"corner_1":[499.99999,80.58922586809292,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,600],"corner_1":[499.99999,53.28467555653948,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,700],"corner_1":[499.99999,98.10088465011174,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,800],"corner_1":[499.99999,76.51019273411423,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[400,0,900],"corner_1":[499.99999,89.58154896539722,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,-1000],"corner_1":[599.99999,56.08752900730081,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,-900],"corner_1":[599.99999,15.867613435003085,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,-800],"corner_1":[599.99999,82.33513904996208,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,-700],"corner_1":[599.99999,89.64643827758556,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,-600],"corner_1":[599.99999,56.25513961648177,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,-500],"corner_1":[599.99999,37.93236265478062,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,-400],"corner_1":[599.99999,62.365005144400676,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,-300],"corner_1":[599.99999,29.031419226719354,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,-200],"corner_1":[599.99999,12.253883489727333,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,-100],"corner_1":[599.99999,24.351856681918736,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,0],"corner_1":[599.99999,88.20492518388006,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,100],"corner_1":[599.99999,70.19921387021711,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,200],"corner_1":[599.99999,64.87459802184522,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,300],"corner_1":[599.99999,39.52626814301712,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,400],"corner_1":[599.99999,20.84422513397429,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,500],"corner_1":[599.99999,54.34243970923563,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,600],"corner_1":[599.99999,90.43477948522468,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,700],"corner_1":[599.99999,71.9563349855049,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,800],"corner_1":[599.99999,94.68620582262584,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[500,0,900],"corner_1":[599.99999,13.587929062656325,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,-1000],"corner_1":[699.99999,19.232542954459497,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,-900],"corner_1":[699.99999,39.45295949539386,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,-800],"corner_1":[699.99999,53.62004669000544,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,-700],"corner_1":[699.99999,56.46141525878764,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,-600],"corner_1":[699.99999,26.159355030166946,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,-500],"corner_1":[699.99999,83.02090943722233,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,-400],"corner_1":[699.99999,83.86526489307461,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,-300],"corner_1":[699.99999,17.625048693353953,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,-200],"corner_1":[699.99999,11.744472745184789,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,-100],"corner_1":[699.99999,83.97011742594837,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,0],"corner_1":[699.99999,61.75969394031159,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,100],"corner_1":[699.99999,95.18253694876984,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,200],"corner_1":[699.99999,20.26174523199196,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,300],"corner_1":[699.99999,66.8631802301183,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,400],"corner_1":[699.99999,14.614612713320046,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,500],"corner_1":[699.99999,72.69936044161898,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,600],"corner_1":[699.99999,36.69780945563602,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,700],"corner_1":[699.99999,73.75650401605037,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,800],"corner_1":[699.99999,39.33619185769261,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[600,0,900],"corner_1":[699.99999,74.17068294770621,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,-1000],"corner_1":[799.99999,81.76704681226866,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,-900],"corner_1":[799.99999,32.8690056515124,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,-800],"corner_1":[799.99999,43.904696149765925,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,-700],"corner_1":[799.99999,67.79396765321276,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,-600],"corner_1":[799.99999,44.103462647463616,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,-500],"corner_1":[799.99999,21.11709730450214,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,-400],"corner_1":[799.99999,61.083649586013735,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,-300],"corner_1":[799.99999,78.66397572689525,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,-200],"corner_1":[799.99999,98.78432705136265,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,-100],"corner_1":[799.99999,56.8902500251337,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,0],"corner_1":[799.99999,35.684420099681475,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,100],"corner_1":[799.99999,22.230367432942792,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,200],"corner_1":[799.99999,37.0070781731809,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,300],"corner_1":[799.99999,99.00321740952617,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,400],"corner_1":[799.99999,63.414854904328934,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,500],"corner_1":[799.99999,64.49396207756243,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,600],"corner_1":[799.99999,95.95332653071297,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,700],"corner_1":[799.99999,58.56576474531172,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,800],"corner_1":[799.99999,90.09403253033607,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[700,0,900],"corner_1":[799.99999,18.475832679230976,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,-1000],"corner_1":[899.99999,85.6594442366892,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,-900],"corner_1":[899.99999,43.06047715732395,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,-800],"corner_1":[899.99999,93.81394432313465,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,-700],"corner_1":[899.99999,97.05132514526116,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,-600],"corner_1":[899.99999,16.02594883942251,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,-500],"corner_1":[899.99999,23.97877781530763,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,-400],"corner_1":[899.99999,69.88248632142924,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,-300],"corner_1":[899.99999,57.59009335422926,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,-200],"corner_1":[899.99999,20.862323542244525,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,-100],"corner_1":[899.99999,88.58864582209281,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,0],"corner_1":[899.99999,52.367656257392746,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,100],"corner_1":[899.99999,56.39265483029774,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,200],"corner_1":[899.99999,72.15116768935897,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,300],"corner_1":[899.99999,23.14923072792873,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,400],"corner_1":[899.99999,80.42838836077424,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,500],"corner_1":[899.99999,12.073201432823854,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,600],"corner_1":[899.99999,66.87540561352509,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,700],"corner_1":[899.99999,76.47253824223121,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,800],"corner_1":[899.99999,75.45962928395879,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[800,0,900],"corner_1":[899.99999,67.73506154102654,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,-1000],"corner_1":[999.99999,41.872536436809355,-900.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,-900],"corner_1":[999.99999,91.68009837615624,-800.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,-800],"corner_1":[999.99999,93.58014679161002,-700.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,-700],"corner_1":[999.99999,15.620079447003986,-600.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,-600],"corner_1":[999.99999,41.65522301626254,-500.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,-500],"corner_1":[999.99999,100.57007851940888,-400.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,-400],"corner_1":[999.99999,18.749759438017577,-300.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,-300],"corner_1":[999.99999,27.924906902361105,-200.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,-200],"corner_1":[999.99999,57.671265300300064,-100.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,-100],"corner_1":[999.99999,100.1689777683651,-0.00001],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,0],"corner_1":[999.99999,91.67227152826447,99.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,100],"corner_1":[999.99999,40.31047254045408,199.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,200],"corner_1":[999.99999,69.03364265280709,299.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,300],"corner_1":[999.99999,11.776876930743873,399.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,400],"corner_1":[999.99999,42.62966174663539,499.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,500],"corner_1":[999.99999,16.743441183043842,599.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,600],"corner_1":[999.99999,45.931006156921676,699.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,700],"corner_1":[999.99999,48.28049684540685,799.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,800],"corner_1":[999.99999,80.76531227873203,899.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Boxy","corner_0":[900,0,900],"corner_1":[999.99999,65.67763818090674,999.99999],"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}}},{"kind":"Quad","q":[123,554,147],"u":[300,0,0],"v":[0,0,265],"material":{"kind":"DiffuseLight","emit":{"kind":"SolidColor","color":[7,7,7]}}},{"kind":"MovingSphere","center_0":[400,400,200],"center_1":[420,400,200],"time_0":0,"time_1":1,"radius":50,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7,0.3,0.1]}}},{"kind":"Sphere","center":[260,150,45],"radius":50,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"Sphere","center":[0,150,145],"radius":50,"material":{"kind":"Metal","fuzz":1,"albedo":{"kind":"SolidColor","color":[0.8,0.8,0.9]}}},{"kind":"Sphere","center":[360,150,145],"radius":70,"material":{"kind":"Dielectric","refractive_index":1.5}},{"kind":"ConstantMedium","density":0.2,"boundary":{"kind":"Sphere","center":[360,150,145],"radius":70,"material":{"kind":"Dielectric","refractive_index":1.5}},"texture":{"kind":"SolidColor","color":[0.2,0.4,0.9]}},{"kind":"ConstantMedium","density":0.0001,"boundary":{"kind":"Sphere","center":[0,0,0],"radius":5000},"texture":{"kind":"SolidColor","color":[1,1,1]}},{"kind":"Sphere","center":[220,280,300],"radius":80,"material":{"kind":"Lambertian"}},{"kind":"Translate","offset":[-100,270,395],"object":{"kind":"RotateY","angle":15,"object":{"kind":"ObjectList","objects":[{"kind":"Sphere","center":[75.74338135553924,93.25350026339487,118.4701136863667],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[91.13605911617525,83.07820023034978,83.180478285708],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.75399821846953,133.48341798133484,141.72935285737552],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.94630584248299,41.22820614150486,31.680498547096427],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[97.4400644604634,114.41084863856844,105.82044412094999],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[76.54983628654936,78.6418341243171,100.32497496225449],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[96.29081013837998,137.2438473252139,160.51866518635308],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[93.9687092631184,161.8998963081515,112.97213404743034],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[164.9146867563849,86.52090172085255,84.1740145789392],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.23621492736235,70.66773254299746,135.73027253201647],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[106.08925972383184,160.95451922732798,100.76164182296743],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.83853898472006,65.63694248151837,127.45839651580053],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[93.56069347169743,45.6459649506149,53.34980200295123],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[104.14737725107689,53.50218395366456,29.13561095405526],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[115.55743902222412,112.2670091559532,134.3184950507552],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[78.77354835199216,37.66132449684568,135.73776538199812],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[83.86166927323997,84.61417117433689,39.70336963683211],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[66.17798262941237,30.224114767825178,92.10236645355522],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[91.75540386235099,135.18348273270644,58.3642445202068],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[65.92312610793864,41.794658895402655,106.70514040946125],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[29.607776328870155,30.539912895903353,52.80149027614212],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[158.9392569915048,25.451932850429884,120.72422429954362],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[83.64653936697916,1.7346210764680936,159.04476295317062],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.25973779159276,118.34646616976526,122.1221759196648],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[152.49859375474585,97.60822272149224,53.88242615115636],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[79.41024585510308,65.71620998984375,122.88437585712255],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.99797399080859,149.92879368240727,15.139669653116654],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[68.66930083069975,115.76473630006011,16.659243615837468],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[153.1737382806459,27.559668250069816,97.36446879290523],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[2.6839810397954142,60.61262515159011,45.66608770825233],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[161.35999334015582,70.42345406991423,21.138428268424065],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[133.51833274725666,128.8605804187419,2.964946978679709],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[78.58540359360185,139.1840267072902,35.81742453210819],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.086940730138323,97.18943794590682,77.90458643058884],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[42.336597831799125,71.54108720205043,46.37893705951195],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.77019448671977,161.73292568681973,146.1554158523428],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[161.0946119520236,161.7637694509823,160.52028312091826],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[65.11674360642368,129.61252281090688,135.61456613829483],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[36.7200306536688,17.555883022026386,130.63122694971963],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[51.806943267635035,75.20022197274967,149.84125756554818],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[107.77218742334101,35.55351586397786,156.2566445417029],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[63.15601064847875,40.17145418974021,45.18174488230539],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[66.66392386810952,81.14424522696645,143.1592806229059],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[98.65089392688175,69.59692763638022,74.20995100561716],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[49.744353342466766,106.13747950384537,149.09378106056246],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[69.44124292749598,163.84084391982415,118.76983517590233],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[101.1218322367208,19.312948221955782,6.965188997460578],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[20.20775084559133,101.24832069697753,32.30094655056758],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[26.313636011605613,48.55629355876316,142.90566117992032],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[4.914384930684176,42.10075857634242,154.0195946006392],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[153.29616103435492,47.51370943463506,143.12617110162984],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[105.38947864344209,53.49621534377694,149.34594511495814],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.69304579487485,118.7593970490798,50.162130947621186],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[89.33212362352633,52.874823356196075,78.61228990903795],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[34.47727080176021,140.31543626549248,28.267317213511227],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[155.27833361826086,61.25854733294251,122.36060461372587],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[15.567864387938947,45.74188963493796,0.6801601359146736],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[123.16845005103714,116.20525976149308,118.37116441614988],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[45.81758552312277,94.09905227638598,120.54790531214368],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[149.16850583235583,90.24241618113594,118.88400984713228],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[160.10173160314275,72.48181893636703,58.3524192260968],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.633617539054484,61.508030054807364,8.080626154564733],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[128.11047150218693,148.06548010193828,2.3925258087636325],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[127.65650935484815,38.337473178014356,106.71278861728989],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[109.72722042201914,156.97339445524085,97.16367229392539],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[68.18321681770186,14.488104041471985,144.3960193339283],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[76.03091714000755,103.5586386165843,138.7563391132112],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[42.76973124063971,143.33971961024056,60.69405616453506],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[144.208917836651,41.417599312509886,43.87263438108588],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[137.27976316247444,134.64800790093062,25.359734625146128],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[10.681400176831625,103.19902811844334,90.86943017992229],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[27.91594564336542,19.626588788531507,102.09289377245209],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[44.73079469967081,32.5874967023953,103.9826277978661],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[41.65898517401512,101.25640398558706,115.62017756046147],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[50.05418888828224,26.760317536857087,15.019723101484727],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[131.05791906272728,146.52338991187827,29.58775744406195],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[103.55268311102061,82.21648233685147,40.74710660600436],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.28093120035392,88.38912760124111,138.6478098678277],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[133.11957338743656,97.65768725446826,10.149583921303964],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[18.594858723783098,39.91475701321936,3.432926352498261],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[35.907680658699505,129.8321068348652,3.8942325563438693],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[61.859491849779516,33.04014191203123,11.168154019515354],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[95.45956103012341,46.02231564028026,162.7173740050487],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[30.49341268838387,58.61309394970938,88.09783078532114],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[149.37853986662662,77.96678426452445,125.58035558604894],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[120.73318552097638,100.21931604096237,71.10745198651445],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[93.49000508100197,60.655245655238716,117.65507023163248],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.626101747568796,22.46932435487993,25.29846346444311],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[149.11480440650976,141.32950933402375,105.52146946324615],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[163.8892128263796,21.3869876247497,110.56144956753317],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[145.0833081535696,163.51223028114688,43.102503524641534],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[21.99503438347706,36.74841797319904,141.33705544777916],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[29.13958295846899,30.122450554777757,37.762655236426056],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[93.57415386830947,13.10922726474576,141.37001403602363],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.96318024943383,64.63802600439939,63.6801094307184],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[14.696564733474455,136.6234860733566,69.01190665314522],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[22.9199940150943,100.15629370509673,30.882633605881328],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[18.839255497346045,60.72554054179707,35.012229758577966],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[95.14206080470262,53.03173476982679,91.72352210225773],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[23.955366083957394,5.736061381101775,8.995666595334486],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[29.47548642268866,92.10783273824885,112.8071711006803],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[50.119610396443164,96.05970055085368,40.60573526650294],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[131.8194927092768,104.2480776311343,41.88330346215723],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[127.94909425208729,36.68707642946403,49.60748018361686],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[91.59090353826187,58.025172777284446,126.91656004569822],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[146.22864663125034,104.8199928406261,2.5667808834058716],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[69.35390301706238,77.25840633672047,3.803460183322316],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[87.79714240689155,51.03248008188109,54.804423949159535],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[105.90705368144008,26.953059382067096,63.72074833829895],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[73.66238497657199,81.29599706582415,18.480707503171224],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[142.16266423864883,58.475447844514726,129.00938335348187],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[26.85234912269506,84.09150891751125,87.8133533193547],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[63.46015598318457,78.45082168354621,102.93982152593071],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[93.32885403274183,115.65918817456745,69.44462852611966],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[74.94457199700135,38.543750445302166,146.88309504227587],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.62348669812957,154.84902231870478,116.95983355917122],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[102.9475582679105,146.56450986645254,155.91239166575443],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[142.45066687363587,0.49821298624172505,102.9923144069756],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[153.58695900478966,97.39601059409328,139.95314400457386],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[135.91917826018494,42.22445402872339,65.85227705184273],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.07521843482758,162.39432621070915,12.107583355071117],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[160.71375436357877,20.413040210439988,105.66196197833148],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[69.33122505095564,65.6687154648478,34.31001674897896],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[13.227973547314324,160.42869926457456,18.256295305013275],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[45.09676324882158,36.774441278562996,95.71574089943752],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[69.43043682069933,114.02411060868833,18.995571460680626],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[4.893674801588884,93.58804108410672,44.927333719128434],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.48216362928522,45.534591625511965,126.77392217456637],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[147.94685742675514,124.28359277302661,149.67131285765103],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[95.71943538553741,104.55347757507742,128.49336575517918],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[161.55294632892208,150.35064007321273,1.8136502609118732],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[50.254665883621286,83.19916938873297,43.433742228214406],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[133.33754099766784,1.4865163189584474,38.81827414756311],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[140.90434819938451,59.79629875757365,80.74099264781596],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[134.6998507559166,159.83484663722817,108.26072491656159],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[158.94887773663814,21.916707085255783,25.223814499726167],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[96.80778679729484,56.31514888318249,47.02862425905943],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[147.72780913396537,136.32924632708972,150.66250133862826],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[135.65319295635408,24.477418008910757,118.23663495705947],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[152.14002985291089,114.2601765350803,17.738973574581543],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.30774142904167,35.192541422341726,53.39492922835855],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[150.80535487435642,1.506189054230458,157.21637435322154],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[122.8357071919603,3.1515368749831527,20.202196415285893],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[8.62882908880796,66.31910387584449,24.935525031748522],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[57.46730613216362,97.73805738992701,80.39893386931334],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[117.21881760134588,38.25316859731738,139.32731281166198],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[113.32493715181155,25.76463539184435,134.00916174017587],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.04564988237286,17.550759673897282,84.25617858496229],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[1.2800459014672427,4.536276491934428,85.94231603657471],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[12.325215771525894,54.73528926996751,125.28848243788354],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[32.378109235129976,83.12300176750321,43.10176727042766],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[45.892137979533416,64.34626828268928,48.27899466780037],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[90.75090968497882,63.59507394190292,60.643327083718546],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[77.85278309938036,140.78786705429116,65.41962251808714],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[134.31781909941108,98.42394583729478,128.07124993561118],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[6.753520899991793,38.21276778477082,154.56971629347143],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[38.942604678190875,77.34211038090162,23.624179562727704],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[46.44559116646107,21.718612277122496,149.26884968630225],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[148.88876692808964,142.19626209990142,55.15750896126192],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[149.37010602344245,147.51583767454758,93.35834088457936],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[80.75574588689715,83.87939357604716,38.27515558663097],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[43.39205100308714,4.048491300888256,69.79387839273947],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[24.36945574727489,138.2263950222351,61.694387896777876],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.826765023827924,124.36653413702828,148.76233057855995],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[38.00460798286506,106.0308090224796,30.766546080936894],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[155.15163178623428,99.39500566970497,26.43474231662251],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[8.34843320903076,39.90195042270207,20.081593367758316],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[163.5838107780932,124.25964022090355,43.471742451999646],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[32.10629701487868,140.7322351830023,20.480388696998062],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[155.8832739221975,127.84604560849888,160.53660549451735],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[118.1806215884561,1.0882427149149299,64.31171743832029],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[124.19247865186951,98.31472201283262,123.00070689296219],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[154.40161884761034,130.5325979543687,58.29367961441427],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[142.51566472247484,156.14452964377173,158.89012878112618],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[63.351757061150124,29.272153932436296,96.59107341106049],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[138.94548972096317,141.17794558867766,36.055733358093455],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.4195979611057,108.91770232750879,56.70785587772692],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[91.76321781324857,35.767254108071626,23.769245943978973],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[117.38485356250641,58.55235922390998,92.67421112612537],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[132.59745608564702,79.750085740585,146.35057506899471],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[108.7246049649806,130.5176863940494,101.70336484772788],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[120.11803898925275,97.98349719976875,105.86015720682599],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[2.5832630680414392,89.6671483280883,144.2401125553554],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[88.2301452082847,146.77489356749888,71.30069955816113],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[14.70717734393538,134.50198934646093,78.96174094806199],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[54.77477064774333,139.5066325167364,148.15035854374736],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[106.65411931200036,60.01111735807753,70.3516556903526],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[102.65055033937483,37.661250106773146,117.91839811878059],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[95.51812480821084,33.01029641353961,14.076396853742066],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[10.617244266158727,74.1369171717167,110.29007543974248],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[160.3284491511603,164.94224381339046,138.31434132497807],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[85.1670839442857,78.29345741327671,158.67821304313802],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[43.021099895355384,106.1241919297868,45.443045319444224],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[71.75700380429875,57.84043341330997,113.16013204081624],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[139.78802921386023,58.83792918992966,140.46153702559548],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[60.59421565743059,68.40736845345351,109.34921938642081],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.11168515187344,7.377920525018718,70.16281811345465],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[155.98928051823765,84.9260030704096,4.005394852655834],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[109.12126050282852,158.66854161981001,54.50683327896248],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[109.15583702000038,35.397129764949696,100.74266583587979],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[106.9194704107747,12.099362371621563,6.860137837448499],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.26297619152742,87.45410372661789,1.7575089972318425],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[49.92746581513579,32.77488000636464,88.01549366525678],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[128.40035925013152,134.56072184966573,101.94379613936754],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[45.66606644271127,31.635196298832245,58.25698965092138],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[24.055982275924837,97.7466595069359,79.2692946113523],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[88.1138891814543,148.76659849600887,29.682490409906436],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.5408365063803,55.12958246142541,25.755751892076535],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[108.71936906430548,84.69344264059522,118.41201554137344],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[9.789747428046079,40.468343086773544,58.183174662495546],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[8.554445288594378,153.48828248118454,162.1050204090376],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[63.86704105313915,126.8793117401011,55.43773124843726],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[164.50577209273453,79.24171882895128,42.140277833986595],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[118.19891462889984,5.536501298912038,84.55486108854797],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[81.5694532410521,17.363907585676003,158.90397068461647],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[85.61760931787117,102.76833091630313,71.04079494528456],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[158.03808723466685,92.03445363294,148.0248513271437],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[134.36184532422214,98.89045790501764,124.94957663432692],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[0.22201684818762724,53.643115112883144,57.20997780518936],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[82.72038817767391,45.71664835754669,159.82168457275006],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[131.93707895233348,48.212472579275705,60.279896471285085],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[6.8165772242809854,97.38011464570319,37.229560122463425],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[30.597600767842426,88.7473312028628,158.51179463796154],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[72.96206756249964,71.5200127280908,112.52193621231737],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[103.36192691659618,116.19862499385243,118.43111520841329],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[109.08989727864298,94.80035322577426,36.89864721335387],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[130.92256159144003,53.99406007772938,41.107035007876135],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[79.93979517545633,85.9277067164713,2.054088883331915],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[113.5777282702179,79.79185514939562,163.45397890241694],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[4.294518010054308,22.81495224675063,94.22989299123752],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[92.99828128181467,0.44313511856159726,48.4683223560157],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[14.70005215843606,26.52687195580953,20.857476645787315],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[84.95356850814807,117.97331551087552,21.967565382621867],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[45.796471285247875,89.51834376755868,40.79643921784126],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[118.20873878125819,100.01367476556825,28.181346669448047],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[163.89874825914436,98.62835402541228,128.77343397836287],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[24.049121102979978,135.9657867194647,10.225638766694605],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[39.48261137594716,91.03543144602608,71.27475245864765],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[1.3382536750326957,112.19145005004594,153.48099561031736],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[94.55336817267481,53.440609569157225,88.47220684632124],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[44.54696026792412,123.7729159519777,139.37792301796688],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[81.47813629793598,125.19880649096572,118.24144985356608],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[63.168883325131425,52.340223818174806,160.4842646541679],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[28.3815528406332,146.96579594031488,115.7204931519309],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.6225317261626,40.46806016002989,37.031330934575195],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[3.086877731495319,91.04851056039315,95.194679129928],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[49.949703079916276,143.72997702695912,68.18675593369288],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[96.10215330539404,39.156783079102674,46.90217555722273],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[132.65936848871488,46.413464806244406,81.81784055957564],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[11.45959082466331,6.168766755640004,65.3741211543752],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[128.33352575149507,93.55522550199974,108.10150588125073],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[140.03811588294792,147.77673964179084,47.34245010568375],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[78.73292720062621,71.45166996756896,26.339043230701478],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[88.38157993718193,122.72398058859667,73.33122974338283],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[149.22484110381433,149.42203381143156,126.57393055649521],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[65.29551753412964,155.4430915798264,127.93387328740296],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[8.017955197275729,49.97268108700268,65.78015276895573],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.06160803317565,37.99283679746054,55.96360920197998],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[31.940456672294168,131.09953415558982,86.43110341157073],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[91.19424328309114,147.18032648564116,95.82044344218623],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[29.17163555502856,88.45849531630893,140.26093019656966],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[66.27204955688379,12.997778114075922,119.32167606215074],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[154.01518092466452,145.65463512053586,64.10157977627703],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[83.23518840879821,148.37037418208422,30.100232656939674],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[151.34470488068723,70.57046103519797,114.3599856254757],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[152.7181507954304,14.6823875381777,13.107204871229364],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[87.23924651576517,55.736645730695216,31.997862424229233],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[92.14330140154806,119.80620018451907,92.74518539970906],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[126.15153114630884,69.39675042141558,148.524136613686],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[104.93528906358941,85.46861933475073,130.66214772547283],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[10.919902457879322,16.987055992911017,21.988141088765303],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[105.40982489835719,83.40357906877648,147.77520879442986],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.77188626390733,50.31494207680858,119.47715115780382],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[102.91967780550509,72.73583418532075,127.31347354364297],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[152.03674269486342,13.914173083172427,107.93304709961863],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[91.69263947910686,75.85481281690504,111.12267809690317],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[78.1810156702896,156.8415724973604,78.00763508009996],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[136.71425530677917,11.643532291855067,52.69791577405204],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[25.06029072143759,164.85166290240957,155.3157284239637],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.339107753231374,131.14615777484116,47.19717642188683],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[100.339520777886,121.24676540455049,38.14949373847587],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.689176890845467,26.563193333473237,123.19432689322234],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[84.85829997198053,91.93674741350442,29.064412197690668],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[115.48334904638753,20.62349541871755,110.83616550039861],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[54.876400844431316,108.89059907336613,143.66353603452058],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[3.4100370831277327,3.421394664493312,107.7876952643961],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.461474183624986,132.1323724507519,149.8750629437514],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[83.77074313024345,62.821026465391306,87.02421685924466],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[158.1722149032231,118.12686944952601,149.87186074235217],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[25.624276679102916,41.49171021759383,124.2474946842933],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[81.58705816669868,123.6300749742115,161.85423643756363],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.86334608693275,48.75710868973616,150.53502249415453],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[44.670136468580594,88.3882545729939,90.52523330790177],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[148.93836865897276,71.40436445658806,25.62100590383823],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[31.46966857215505,85.507836963351,151.88402852940973],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[104.07566405166942,162.3218296886756,148.3968045194222],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[10.696784698360482,79.65247225797796,29.21878163119978],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[96.04435696273507,52.389071017940154,77.59643927720816],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[44.50850244707311,8.382883216048334,19.328410672645195],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[99.72538758748092,43.9355356647351,156.5798698274649],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[145.73023732928388,77.40243227505269,160.8988117274473],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[108.39508078235706,107.3833351436655,122.28484993008446],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[97.87365864125289,110.99905867423013,54.39106606255134],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[109.54345019016345,75.08742915257203,4.630401840830837],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[83.10652876190751,94.88039892696938,27.886484434610903],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[164.07083639637872,63.01397812998176,50.6222337712401],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[118.77489833200202,54.01874558379318,118.5669081940992],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[147.24132301608066,48.41746161652059,142.7551440617875],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[140.05856645557273,111.42551646346146,53.094208914408455],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[120.83222688456952,48.28000195812007,163.93237831213412],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[79.58259152390144,38.97440665440575,58.997585581482866],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.694738782625418,37.50725173875717,7.00127540804651],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[164.91577131114207,143.5786036493955,54.35900516514027],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[119.19166833509378,151.37046982191865,20.797569604754383],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[163.1953639847761,88.45735720714859,63.16415346860062],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[105.96245080597276,143.2935709479294,28.49012499409731],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[151.3679338613849,64.57788168987308,151.76965063376383],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.10223642953702,80.90565122045172,151.61581197143573],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[21.766240388401847,113.83754836024372,66.7216901917418],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[114.93134978843139,24.241930826960285,162.65628508674467],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[84.66214101296218,75.5523677594065,16.40686739674167],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[110.42693594985822,94.69719781156357,108.7222914119284],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[48.101064295516295,86.5923720207459,29.57673967949808],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.7933431099959,153.68026444402273,45.020048304679136],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[114.0427926278361,44.54898757653197,37.49714778772774],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.32310545974653,134.44147695230205,72.1897717374931],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[139.66098934277724,22.651051275910152,98.16832474499293],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[76.21853080229978,86.29298264511336,126.81976922662233],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[11.024405564234943,16.58967336872652,145.37759367000595],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[57.11968643173038,32.019374147867126,146.6078369757554],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[118.9753077641761,63.2437088942415,90.64187533073675],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[77.9419907200453,8.05896107667306,130.85856418284115],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.93113559209803,30.56081456794118,87.18306059529232],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[65.50113350005287,146.7831410010752,17.28182090061017],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[151.89310992963956,160.68719986561925,119.9396704309405],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[142.07965643238734,51.99432913326586,66.85058375785552],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.34202060814859,65.02693329018832,106.81092705025415],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[49.817449483659146,127.24181763980846,141.459175195885],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[91.77864111788043,157.20202656052265,104.89397691305982],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[155.6595019905694,58.15047631394891,73.88769208524799],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.33661897207965,62.337753339090156,136.8435113148809],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[99.04196252804643,157.05887349607926,127.53531674612827],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[153.92111297784294,51.90774913605127,32.60186800575768],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[146.2864951005255,35.88837854871517,124.16538288283883],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.54428140307238,21.223093308047847,99.18980128716584],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[25.069421896421893,98.20407931445894,156.16030151726287],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[68.95876593404289,29.87972592191638,118.17018535489314],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[39.06767805978534,76.778624410477,47.45091871747165],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[89.50805202183302,1.8695056219481077,146.53169384135097],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.754662444149222,142.56579889632545,144.93855449453406],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[161.5891216388197,81.2033530193126,138.58779689742454],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[89.4572342339031,39.583309565566395,28.094064675186644],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[54.00632674803994,17.23067566726301,111.49383341630747],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[128.97032337606922,92.44595668547542,136.14032215930496],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[38.34639149805736,21.845214958370224,56.86120187619372],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[65.10774893651416,139.26798078013022,14.149429065668539],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[65.05008863909504,113.31035359130098,16.36968976585837],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[147.32490515720738,46.09908303385971,127.31877315330672],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.192353178739594,76.2390870093252,162.82248132511648],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[113.78480942529227,90.28521582573391,58.63868129280694],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[137.89418423320012,113.18242800132717,74.18598426455299],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.57804805991886,148.81861843767842,51.249262251057274],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[27.020420771867492,44.136722918415664,41.65527452719217],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[164.379465259425,15.659754062677324,19.555055563642295],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[136.58971701947738,161.35124695770173,77.36824484609413],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.97782028854576,85.93628967676327,138.4544027823243],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[61.342664737397875,68.67341775797084,105.70752249508871],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[123.40628367221407,114.24856659216448,2.033161929406603],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[10.226657066332017,129.02038775324664,141.87203443040218],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[96.19669239857325,15.779318488131938,15.479933761887638],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[77.454538053649,31.63894145074925,146.3864588334288],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[50.9386731614827,153.4460821807652,76.03348043412477],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.9711787615389,78.69873744914315,59.23972630274706],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[81.09054736922975,3.6267498667443787,103.68801768535134],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.032512206033953,62.41887936316176,156.48335849874894],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[117.92402491326544,153.08470182526872,84.35672226493509],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.76712422094493,85.74462930589898,48.321724758680915],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[101.04709728168565,92.81490508029107,148.42688276534312],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[154.10297260887486,62.51869357603214,40.73528425362848],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[157.1517613434105,8.739817699508777,97.43353044679506],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[138.54690363278166,33.058651548548156,144.6305863586941],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[73.99850598998782,3.487891890683846,70.44822363251528],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[33.77867275342789,117.8870027699342,88.3267459183971],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.4573138151742,32.22219417484457,103.46610439180668],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[43.740257712066374,73.48520859269298,102.81480519493279],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[102.01080854072151,137.2122773376127,110.16987676114229],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[105.13799697020403,15.742098850358188,64.66203258221591],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[130.30341057263374,98.66409191158161,32.608847373203865],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[91.33113141221287,105.94834716047963,54.974426067945224],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[42.95689651168389,158.1064362615154,72.78450528085048],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[76.32229055546351,33.54635269373416,138.3670313243884],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[163.29933531505924,157.4981754025489,48.51817282621826],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[43.322912756975086,12.981736452897024,145.25160640532502],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[149.473344322163,21.58550568127319,91.25735382397731],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[150.5879222934773,8.834441065929322,78.49541327369197],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[84.53268819189496,82.43360587986201,116.90782099434824],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[144.9965211576828,65.94771842565324,46.788582551068984],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[138.5342103220059,13.70515104300784,142.9033868726822],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[130.00619003854956,107.60703150630492,100.88428522608652],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[72.2266480936608,125.0290542007672,17.8443115714573],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[103.68541917639497,110.41924315355278,102.3097683387952],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.35476158562435,32.15379414611589,97.6433075766934],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[146.44870518463506,8.088534217011926,112.05933961876138],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[8.237653003379558,32.49002755129462,132.32479419607367],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[137.4233969593833,142.52692487256937,47.554287006913235],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[46.66271831133794,131.0421998269366,80.09886141375857],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.360952750767233,152.9709309618227,45.37823553585901],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[10.338773212137921,157.67256080250797,130.66850598925208],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[162.46844769235992,37.69571641359745,10.380100992098777],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[62.017688504740036,83.32251972988696,48.34634779512327],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[114.24748114256451,127.35924615340241,94.40024240992685],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[104.13453803979736,45.64904100237417,125.78680258670524],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[56.11941587231438,48.21580513838425,118.65517101872317],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[146.25910645258904,162.22625421842204,28.110893692776585],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[102.43458578152405,8.921563507926644,32.52834486550687],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[146.15638824612498,130.73081755648792,47.474647522161796],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[20.36016179764553,19.135923826436226,152.84243751246854],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[9.24104144676714,73.10525228574788,111.13903298521464],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[142.43798390417285,145.6828384973628,63.02148537492641],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[27.43273665025069,150.48214668486278,31.035728710640036],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[67.96399278045915,101.31307740002501,6.961735972371878],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[148.51296701562853,57.80241588013088,123.5855142985428],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[134.26681160566858,54.25734859890098,83.07855999091299],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.588018135806163,107.4062748180811,164.43633572173698],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[36.457643815493654,0.7909271677346674,84.00056376082652],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.12399181888685,99.97681134644587,142.8618560626804],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[110.32585717856226,25.169376438239844,39.30662441172174],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[136.1961876617149,99.05418290201666,161.482688034315],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[49.13723055803748,112.28701124116101,138.24820027482204],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[139.29342786512046,66.4704403690125,158.28571237592018],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[83.17031952437662,85.60212014757185,17.781397644160506],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.33035539200714,68.84163423665471,107.35650111160871],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.85041246158765,109.95216108896429,163.25547784672273],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[82.34152565667036,104.68823864529342,70.74807747647307],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[3.6425376213305496,117.46988930398041,58.67854179489009],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[84.76147370413365,127.2728549639643,51.53309474044757],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[11.976750853609392,160.85937932881023,84.56761028291173],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[5.712788556494922,78.65393649293836,0.9428089299126641],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[89.89757236217011,93.03148293339063,157.6537626389824],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[149.50057561310382,111.06717863740859,25.462808572339252],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[95.24939960487865,24.570011416115875,35.87287116931282],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[77.8317198725378,87.76889305539093,59.24143972721799],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[120.74507384326427,107.95135811004202,163.87751563897675],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.35779112017267,61.4939215415278,35.21338558639308],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[13.02338435734475,128.78164146190326,128.03632721509769],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[127.43335150326054,153.41088686053502,59.25058155393278],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[124.81373726920187,97.31527008956175,157.58754910848023],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[44.139162315938215,105.91815389341993,83.75722504590938],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[61.42593434164041,109.95920775633819,137.4807919279322],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[164.74804314273678,26.256446428098602,158.054080842707],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[108.95615996275596,149.06242141860827,18.946487141678933],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[86.50704741249169,64.62830178897346,1.146810265120659],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[6.691072239296081,67.93184681604157,119.42364403045119],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[123.24762899802322,33.987776367199736,98.08582457092275],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[134.4297397057095,87.03901635115088,156.62413550508793],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[132.5185149436434,136.32687483033376,67.82883903892562],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[148.0284656623759,138.19289250970928,109.85317219091215],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[8.110799496601802,80.20489703239957,64.5572767741231],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[6.15410643748982,76.31245886018384,87.11630109977489],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[122.55704893877673,17.20958507465161,75.63599827557834],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[93.51043395457964,80.62991128317188,101.9728855637176],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[150.09374054608162,92.49700018873125,117.64557662693778],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.421347131727945,64.73903717494319,2.807815598333381],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.18335207138201,96.99583103253039,72.13119927337821],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.84227646341286,122.92064122874494,11.297974359242172],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[56.40810850858735,128.7884198040387,74.79186203404599],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[11.724706216272958,123.91787258322182,11.9749443924451],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[111.390816119322,88.70995116556306,149.68246547271744],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[142.28331709587442,157.06593554699293,124.14281900417896],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[117.92287186021532,87.67080533313184,57.58429608448542],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[110.89734683056923,121.92469259469505,17.166585615619667],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[8.740051935510495,144.29950409266715,40.40141553909887],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.84822752464186,158.23421090393686,38.465874854313924],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[23.350467785820214,17.64001108272172,136.67290112103632],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[118.38720953299332,112.67988472175074,121.93559657441081],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[77.46108704753212,63.293304176934384,31.612561674103212],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[29.648152195955376,30.297634420466498,144.76793598070049],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[5.967633507363134,101.49794521192153,34.9643378765305],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[64.24438768627957,67.94637969723217,38.253684876412315],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[60.169672361626034,145.88594499923752,115.4113188704925],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[105.62155441284376,90.19522487916367,143.45914650290433],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[134.56587328129186,52.45212094279805,161.95994546808498],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[21.450108273897982,58.19629581870277,67.39409537816967],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[124.60229956679845,56.23916733759792,48.38059633373383],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[54.0867169367431,63.45331239415198,34.79205999687702],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[18.402820629271787,32.11665124900305,77.04019205730553],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[100.65123865794897,162.0203424493635,103.9032599844362],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[124.40721036262802,158.78573738948123,105.30234999022336],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.01547091581436,30.956721948967598,102.68160958519798],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.40199864378429,45.93120916540144,26.14913553299579],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[36.66855945684781,94.29531740388784,46.1679914925487],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[25.526902231783552,144.12898820913622,118.87266892396416],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[80.57891814385177,120.1491083937294,23.603909244416265],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[9.791858668265775,7.633079401450454,100.33874424349432],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[63.88797901586423,105.83405251931659,90.07745737722273],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[26.787288090562665,138.61972339665624,146.5296225786769],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[151.7254428645055,49.163491026018285,20.686280984199097],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[104.06958606608382,145.33193015137869,32.978773618502174],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[87.41788153759788,110.44861859345332,37.43828234348669],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[3.0356105181738813,22.037353327019936,67.54457181354456],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[96.13985470066814,154.44533013324943,104.76103000392528],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[86.97619157118591,118.58652294650717,99.8028684556772],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[23.821968594287483,149.054467397156,12.396542360424153],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[9.468873338847027,105.12564215985786,117.97785963587573],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.65939865168846,118.28410963556898,153.4264769897712],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[29.538218378154703,97.54853659617508,163.527780283493],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[114.97897858221933,143.06391885199798,55.598721114620076],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[94.81827560388597,95.77159079461104,44.357240606513194],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.38706113704222,150.432831840753,10.556404846350297],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[25.73291941592727,22.428147041362404,116.46430068631246],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[103.13336373802152,49.64415703117868,13.336336128940214],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[4.049531444692787,119.4454342896626,116.38574748467595],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[133.73790866353661,117.72952584046645,18.46405391514175],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[80.15674568787811,26.673937730718563,161.1724994080424],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.97177765003792,97.64807159789765,153.84168346459944],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.3469469226523,30.938582284466484,50.22006719281601],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.7201175713761,142.83600255512013,37.874319452078836],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[105.37637995638767,49.09202309450175,129.71368724621772],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[127.05462413288807,106.09806286310304,138.39775776424017],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[99.17061592221592,164.98593018505073,27.406490372837915],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.674859221815517,97.63398711214056,13.101828888653458],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[64.9455695723259,64.53267017039613,23.391797969734213],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[123.54651868175199,39.288606367172505,76.07675589561701],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[97.99020599929813,66.96696089274232,39.92700280066074],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[126.83077244381649,140.66609592289566,113.10102694181386],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[2.8744552082454176,80.02110465491153,65.20729649032387],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[56.98283817129545,147.7067010976265,142.50248755287106],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[3.188671965505887,75.89051915071676,61.321660269620814],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[18.462157928316653,11.606992638344382,43.57687232222954],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[3.8137125295526095,67.2366034683358,142.13087728532142],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[148.11416474200988,7.3149457298894385,5.733529153799006],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[86.20195405167061,43.07729587280455,120.19727893169001],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.5197153338103,157.99260540990502,74.85902504493639],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[38.332275175746716,154.08922413857158,162.58090627107148],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.60003247983269,45.89698429355052,83.98331068584783],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[160.30905721190433,34.665944704056514,157.20607046410177],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[8.96997169836735,100.78244488291578,86.37830260705988],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[47.53613339445427,72.88692390766094,10.79828153090279],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.12398560138068,86.01785014056271,131.3503751552729],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[9.62090450023067,2.297495374549018,107.16480080594162],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[85.67527489831964,96.46184181585262,102.14098362001369],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[62.82701358192875,70.688574855833,95.47261936524964],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[83.49235682009912,20.922171439627856,9.727128474725333],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[8.372870439746505,121.58941487132003,104.70462223423169],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.79235176202445,14.20294207942204,151.0597309550755],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.16996596590499,27.245663520663758,149.07088148775645],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[108.40893271619612,147.5627756787778,102.81093313302792],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[153.93296855101534,22.495913379150483,76.07244372538943],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[108.26836546525013,16.692151304218108,85.62891577246496],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[82.34659508462313,5.3176896770535045,71.81758098456719],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[27.772992745731163,139.33609077455074,139.26531110100822],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.000714074342916,70.56703625149926,42.096460067163406],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[0.768275747039141,14.714233384890992,52.15115556641779],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[122.62049613607125,161.94746719735087,143.83838766513233],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[140.79742655483383,47.092368503699255,49.525501035041884],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[12.7791397851281,35.84572522807203,154.40639870168948],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[45.87774188154882,153.15343911109912,40.540393663557914],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[44.665271855814346,156.64205230070263,96.4134041177147],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[156.67311148464788,145.45500542263156,149.2133698530165],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[89.10698717952388,23.68056921521154,80.18853136594396],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[124.80239080302135,89.3817050103883,45.463037933804344],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[120.6918492262462,54.339457662649565,72.76965177855357],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.214956883438337,60.969477775832104,98.68473798824641],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[145.09720920101577,17.831363586638034,16.570477642054303],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[153.5066184095013,135.9638189220542,57.1376597612495],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[160.81553216662877,37.37904769370742,108.65773291848176],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[18.943698438797597,17.754304105762678,93.91038627095836],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[36.68367269812582,75.98235991877321,28.643980958704223],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.712882326378,20.816954658633353,63.281031501127494],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.82243228202019,137.0067163191362,149.46922431748249],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[1.6738614062919022,20.100963870830956,77.63769126001223],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[81.51805741565401,93.016504277223,96.42946120867212],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[140.51689735044727,48.96842334703144,82.58766847879181],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[23.747261649435004,3.708171715292173,6.4422865343714],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[135.98566634462816,80.24482226040281,129.58741386913886],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[59.11597294046756,139.74432563214782,86.37182992556592],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[134.53115723049834,127.1945596122771,162.34903733745116],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[127.59517693159046,34.287477992497664,48.5624582677508],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[132.70742067469786,15.240358533751012,52.80676603675276],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[14.358843754993543,143.32546523009822,59.99690545456319],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[51.026815978517284,143.08412419648684,7.728466238730768],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[100.23397802760518,80.08660581929261,70.89258660126237],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[5.0091039520524605,156.47352500043863,113.46110874387577],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[11.848775386900893,135.39157896536966,2.0089627464388027],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[37.83816062028333,49.86607079359965,7.71990775628034],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[152.06344028581566,56.58514899086178,49.53370455806499],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[58.56686501682772,20.47686949810037,60.20486185072191],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[130.3023252483125,119.44689985400203,81.80279478432143],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.88415083797025,159.9528442118954,9.083413141544124],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.088686816946414,66.58349947268383,120.1736636575404],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[154.65388867243848,73.18028309723321,141.91029462276364],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[38.259121455156695,119.94015636474198,28.070226320391757],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.70962522363024,64.15342777486804,164.7260116924591],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[147.5407812542343,64.75551448599384,5.475457699352698],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[137.56886417104047,86.36931880589019,21.22178250756568],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[27.23883219671685,90.53883038862313,76.92807018166852],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[136.60626546208837,46.54812484666071,52.19445836114847],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[97.75664477721169,95.24775201356849,31.955795858738753],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[128.332910573113,93.11872319593974,119.6507893678189],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[73.45105789171986,48.17154161708989,122.60435831604312],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[54.039811831010105,16.3365689192439,114.73686876234218],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[147.25393724771916,122.77704472166316,82.39911787564527],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[72.02091243367786,147.12344257477926,49.45862274514667],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[24.644145609953267,93.47609068379737,163.02268670518671],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[3.9047449289307137,111.37794918358397,149.96073935097257],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[5.16013076819596,103.08873916679242,159.6800085393317],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[80.65852031785927,91.43337126830451,140.1493384565634],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[124.2350424129317,51.59435063935188,25.169030241269773],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[69.51748116019023,45.5127622643347,126.50036933219818],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[9.046894402393644,99.321488949563,66.57788596773835],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[95.29922917418673,35.80564567546669,42.47049248785546],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[164.7209786088281,53.36790592363414,159.2890761291684],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[161.51442844106015,67.51550202260397,82.06382665243721],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[162.26463524324552,118.89773032587,161.11697629066782],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[77.17872678807093,161.88970514296633,13.640282044996601],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[83.60759997291304,10.835109983022646,112.61563314116334],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[115.69812047512441,14.771151258950637,153.49165720190175],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[23.54124152455858,37.84290131829293,136.3421753163416],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[76.05467987429395,96.6539637090073,4.577688447016424],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[92.31688907463823,164.4489868534138,3.063479700926913],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[74.82529375287221,153.21349697560996,121.00252294409847],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[2.3347014380753697,32.3427020286891,81.62488889347067],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[15.100602416469805,32.001176118903395,62.440091398671946],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[2.0876518680331957,113.94270849837221,146.7905231416805],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[3.2644213068761427,54.754603500246944,85.86362447451785],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[102.45962513074127,150.9869319987686,42.026006518176665],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[64.18685429947983,106.94896426260104,15.983145063048958],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[3.766493704928824,62.85958770427356,106.9292008712807],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[155.97473735332358,59.19520439943205,55.01652892184643],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[153.35388380954439,84.09294162984264,142.0971048998842],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[63.249000166414696,52.886277716005026,144.69088903268448],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[82.66200212827819,144.18191891476798,113.12605142453184],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[113.47524093334776,34.89019416059175,141.82467497576516],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.27276439613587,47.41369017709271,80.63176685114604],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[13.13679173102828,157.69480666175195,95.02132585410153],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[31.14450538276826,62.19297299961851,137.55662571224673],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[73.14689655208457,7.524298222217381,141.33565654228568],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[84.27329336922512,145.02129601671706,120.66766319772017],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[46.928733256764794,141.18920760188206,118.22258873477028],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[46.030584900020926,40.917187778351106,74.53043729570406],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[132.72266069318027,20.935023660951167,87.7080083406129],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[63.65030892318737,45.011162494842246,31.075581897486888],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[92.02581666342296,86.20194831216789,10.028059267945865],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[110.78730843060957,128.87765815171073,76.0789617102378],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[156.80534338872607,129.12724312388394,139.10134108450362],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[61.42610690133687,55.620597437440075,155.16946207931005],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[103.01219962104193,132.80140030741555,148.49574189476033],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.9731325264296,8.242774844158836,111.46136781858866],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[108.36738350007101,82.16747638433863,70.30372382048412],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[59.0495559775712,160.65778958019942,97.30115039545204],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[97.10643715391188,135.55486326093032,102.17057237895008],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[99.15812400765468,42.63969716828882,115.34242364222511],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[6.239686704132513,125.72603017458589,21.193172462010306],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[44.90648057784038,65.99360371226166,159.14211480413735],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[63.80422607301896,106.37175520176304,45.02679632890325],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[158.31517324806367,44.31531879207763,105.31748552575874],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.804250193976635,41.636459445322224,131.06780545019294],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[140.4205450927459,60.64823679753965,1.5238679775757458],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[151.12705319593152,63.3796905553954,146.6009305938245],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[48.294678492955754,66.95823288886203,81.07327664616811],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[131.00486755065154,61.71183947515742,98.63035547779162],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.66744581851108,53.08685725618477,101.68342741985336],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[70.93725790200241,153.01915225407058,151.60354164078095],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[106.29936037823845,20.267079709893384,47.49834073649093],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[0.23387739951593267,90.01017692449719,55.28141596856991],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[139.3952451898917,53.79257007916202,152.75755296592746],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[118.85169671940871,126.68187308912239,28.89301558812096],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[129.6276130002139,69.0791347132226,31.50942261537951],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[64.51369239632544,97.61428070384964,9.013779651185045],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[134.84307155686616,113.96923478526539,20.566905885450076],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[120.19721194683923,3.9886791076428607,38.31895496496785],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[23.035031554361886,119.50404872787598,43.31165915044567],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[118.4075248510823,44.32847244785621,96.4889205977944],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[100.54190433623161,36.838226404785786,30.553109211810128],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[11.894009436482957,144.28990735781673,87.520024531612],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[35.18634393474832,129.58436638759846,154.92904307421927],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[104.56867697046833,88.79816193263585,130.17699786004738],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[89.4875777704254,114.66195456402929,1.44326137659744],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[63.59255969423437,148.7691642695103,64.47782750897547],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[32.66674086270256,124.89668638307751,76.37904838435485],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[48.73396193675946,10.489903000713888,82.17158062749931],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[62.238671195549905,38.77811289567038,16.720898111109666],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[37.60354642094274,13.721214581316197,39.160310363878246],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[1.9808235712052213,4.370869612787974,63.8101555456916],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[39.397943294615025,138.16468989518464,90.53686099055997],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[125.45701245063678,85.15949378438312,10.510185472447958],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[11.610778169888007,9.556482807830932,107.74456157192657],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[16.413707589633965,117.2760102171916,45.5694670607734],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[22.51974286674176,16.396925532396715,108.49628869093993],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[121.84921596485539,119.83239308732603,55.15597254078965],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[74.69752167150382,122.7890960679173,4.137600168490003],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[116.60018476695411,93.00268738497773,109.2010475873693],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[118.39273833076994,75.82351973896094,65.17542274751774],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.26877804019995,61.825421124732244,106.11222499832343],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[34.80344453109643,9.027403320370173,29.58488693739566],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[29.920428839872347,85.71369735129426,18.989276114614494],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[105.98332225007042,13.862529546088208,14.274173157417835],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[114.67319308771837,84.59006772166691,17.291213965335864],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[138.71370146564794,126.19858254491483,30.025815964614814],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[82.82750824179368,4.864190139707586,8.625867869446637],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[128.1213923179122,80.17100375350317,115.24064605417674],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[92.30389026232304,142.56787894825814,94.84811479019221],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[138.20365646678806,32.21655967593086,78.99562909523081],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[47.66803105765012,89.7233550304934,88.66864663923837],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.02712446260273,28.04868434547385,149.18880514314282],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[34.135411364644256,1.0461992535163378,104.89918383955288],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[65.81710423715344,48.52773815987713,14.969482739173236],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[153.63753436110585,66.53352464094762,22.44519241728304],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[40.47798030047774,129.9313637767983,81.47546391838752],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[142.22746898887715,155.94124241189562,32.55752450565722],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[146.72002388865127,20.46565334073578,7.4247956013610406],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[42.66786524395222,71.72916354377014,22.565616884894954],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[95.9002988987817,24.74678145585167,70.5457996471303],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[32.24116659598028,67.51862596410015,156.70983606673533],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[23.797769325101203,36.085073292949446,154.03364523205684],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[49.964597908019236,57.570735364138116,98.84124234147666],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[24.451823613695503,119.23186931136256,27.032128165347764],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[130.03991034527283,114.09871725304289,145.5758367388454],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[59.4529537340713,67.39999146163585,96.0112700878691],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[81.9658249179621,28.427938671167084,129.990466196131],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[94.86569544766806,147.45229797007713,103.13227464749089],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[81.70195250531891,6.3600025956336035,151.94734942389184],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[146.9072557684213,14.850952053601285,5.786579548843552],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[77.0021179169374,162.06354566708367,78.7012223722223],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[23.95270417607545,43.33959497039061,77.66959782972756],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.217608543390003,34.11828609560926,113.77165783452584],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.52191740426294,77.68056594502394,94.97763603282701],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[135.24065046517276,1.233579925284748,102.16273316691223],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[155.8125664518941,105.73347103222177,118.4850932265884],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[127.49047314926881,147.3551818155603,36.206930450559945],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.793664737119983,87.99115661884753,23.599893245795766],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[138.5295586888185,30.608799753049503,66.6160777020848],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[162.87009851801287,71.81781024922914,159.38472984227704],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[147.2912735141587,160.73902681524734,64.21684460545364],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[76.20610210282224,66.00301441544137,19.34673717797619],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.473417416861885,15.78610050075708,33.11482261955569],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.37502108833961,131.0964001015216,2.936629410799326],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[74.4606043633107,4.934445336943751,136.30206619019057],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.5161896633774,96.61978579975222,155.7239020383308],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.08242236726733,4.656454185435175,131.67515768084033],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[3.4360668503510325,99.73360525465105,159.8936792636223],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[25.12000489775078,14.965934523568311,126.71778881359366],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[138.5953835257916,105.7387409619396,107.41279753347865],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[74.93398566827292,17.00053027192406,33.99322788819375],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[68.45444433850494,133.36717344067495,95.08547612081651],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[15.91466367566537,85.26205599149787,9.54768111744794],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[136.01645859829648,76.3059986456717,161.0384845427039],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[67.71482332968473,88.65186468964201,88.92492329672729],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[105.30848802789978,158.1552361666632,2.980550318855797],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[152.12625376183527,108.51567646784444,121.24616623164415],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[154.36580446511013,94.88534917595346,130.5341342008367],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[6.694315555995822,164.521425488401,7.20125183456256],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.65241859684882,74.1475768055106,10.636348866208083],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.42928371693785,126.48693759264577,136.9368050413286],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[51.471909476514355,46.53793411171645,56.245743274282255],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[122.5597696291118,24.59584219514095,99.22738388580366],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[148.44616743502198,82.88884693360802,41.70617876178988],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[129.71376372358753,21.021708153308005,133.34124091744218],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[113.74610252421262,42.32301720727808,4.074857774747748],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[48.92463955582558,79.13212785269434,13.505871224084867],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[130.71999028599907,105.83621843748584,54.30170332614603],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.909599775512646,148.10197648152368,116.71525638006699],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[93.30873773240555,91.34101552266385,40.85773107569935],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[150.81511810089128,113.29287925100527,42.689456055238715],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[96.84256073899238,40.33674197434078,23.837733905226745],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[107.94814132023936,31.03556642253046,114.16075165976551],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[150.26383007757403,136.3042276824709,135.58069104434622],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[26.332452542674865,127.28916361812234,76.07360187851032],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.09624911405678,92.08049178643647,116.42961765441403],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[142.72098707469368,19.74338137714913,134.44904714413565],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[55.51341271792654,48.51790818797482,56.242693995088175],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[101.45365040511902,139.95551315324138,27.956551510741537],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[122.33130172029186,78.65649313050692,74.43253534966914],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[18.143099993339405,30.03455548169702,87.89135461474578],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[56.502423359180774,101.10360661625225,149.69753893529463],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[163.79808419019355,162.76506738740432,63.34013193575552],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[79.78688092430743,137.72836585573555,30.910877407237553],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[119.06330623419078,131.72983810547464,127.19532900019054],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[68.27427356369714,26.86786422588639,76.58576907749315],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[6.417152378095544,4.6683761363702425,130.42404492988726],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[16.346676562086426,131.38931405821435,112.23861221525759],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[55.04235879662259,21.038647499186766,142.5991295478574],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[58.1417355631474,74.54737099110973,153.54485317235276],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[145.92231362749095,95.60715889879235,55.002487637742114],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[76.57391411882207,41.58535916691907,13.942200320913264],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[64.00810600226606,126.527450100564,120.08301125672071],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[74.92546041086344,91.05605522650153,81.23669532564489],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[39.05883001756268,11.379067138090926,131.88720469800515],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[9.364739832740675,160.72742798398906,152.90375081636805],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[113.74073812677477,27.336942172713638,28.188657107342713],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[69.9571014040817,96.83424708077952,0.7019069414972257],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[124.53031665150762,89.6644363997247,12.512229386464593],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[117.43639824505466,124.28045576307208,77.8226452168624],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[152.70174914383333,0.19963746754401268,36.471460672332775],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[115.37838222301353,98.90195276507926,79.6889546798021],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[22.79367920750049,98.53821740398625,121.84736660943258],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[79.48612344989992,159.73991834216795,130.2186459866306],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[146.41514107045603,15.701719749347694,39.13117393816744],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[140.4042718670208,143.69150798208545,36.9086832067523],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[2.8189959412970857,121.84763163822943,134.30168958990757],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[64.95554461188286,75.47828671056085,15.520245588638042],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[114.7243764879932,96.8714309962187,36.75484535611126],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[123.57600461446086,37.40536828363048,20.329555797721202],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[41.154368755822894,20.29780217684576,100.78138968936995],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[114.8257400503407,162.7574534408912,2.582182658573985],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[38.687763411724276,161.8814942184985,54.306051275985126],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[28.76499056116171,63.94791518993308,134.41713423105216],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[76.66967060244603,104.18306411111183,1.5729102334766287],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[104.59523868745816,115.8804181675833,94.58186323203736],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[79.76277511857205,114.8575095939504,79.62470174339009],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.09553694415123,69.776160596827,71.61176231492895],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[18.328368081812116,155.14710842638314,45.33926962555623],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.13252302011165,74.0485508737458,30.508084875087476],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[0.15736344887982479,79.68596513847838,19.811338207550904],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[91.09800335367994,36.10829899489135,82.76208094447189],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[29.503858264188807,136.0898091272299,147.50106118977138],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[115.10647010690164,162.1819003948639,150.30891694205386],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[108.64896653874486,90.6239458657672,80.8810863085037],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[137.1982787843758,11.150652669779163,139.43568756514688],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[144.82992015649236,29.564253531269422,97.103081243258],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[129.33702167034411,139.80904304442865,149.32672557861594],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[117.00729482914844,7.040519384243618,36.950289785002255],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[94.41778233858265,28.165620313896582,52.6247709752336],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[38.83557025651503,131.37781824072653,146.17204949492447],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.07856336178367,49.17397641261193,155.4478512758678],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[25.800537620033648,11.049572102907444,47.978818337012676],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[69.64773484218877,100.16699217241477,66.47062058634852],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[30.21590078197231,150.4648570507872,150.43593409825175],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[62.52744586187756,73.17595256378202,65.90254265164467],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[84.74967490445039,70.58692194877574,33.81149123440622],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[37.71004248747334,53.809967671147014,72.0523511178706],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[89.93338621935693,139.49164972165002,78.52742638545729],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[116.03767621342892,36.43237985780535,71.24332078447001],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[118.49874383874105,101.45089196723593,0.925258188904734],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[121.63790775210457,60.75353940511345,131.38809579753172],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[94.48321098605885,43.767171166546746,88.63709775652424],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[138.18458712870532,58.9326349425571,114.74098511275265],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[28.718949263981962,69.40117216192061,21.15889811638983],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[155.69610899352233,10.382164673157298,37.72226645785862],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.67509940506505,15.639767680839313,139.29407313580566],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[11.473215231669139,148.15058986989067,5.99991539632115],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[131.18984642234352,116.90412665767401,2.0350982020788777],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[110.3431110380734,23.309528274180202,69.56907005013336],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[77.87264829975311,135.51377233393396,62.54474356447904],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.32711930362895,151.9451066859707,149.6704732932876],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[45.232574330142526,125.90718572379215,160.33453417169292],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[132.37221767731532,64.32557472099846,93.64480151982222],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[67.47109226717016,10.416628800858748,150.0502023694865],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[97.85099173307574,1.2326972993378749,25.0992618734773],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[19.348550058929145,32.22618947394304,158.59711175592432],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[119.05178452532817,161.67468265331615,50.14143646889545],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[59.1362717944632,42.676244294196955,157.71371518784932],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[116.92842930925796,122.73707804872483,19.252658453943692],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.55565684150895,126.27321631469965,38.16126057484897],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[114.0213169513705,61.18833332548428,90.63782436720452],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[24.052749785865384,159.8495588087599,150.91246852289052],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[122.15292611175796,151.07182172624292,142.35432025653543],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[33.24945727891418,63.22420312313094,124.96391630928208],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[95.25085700671396,40.00040289219852,57.150082371734314],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[12.456802848967698,98.25739697748348,2.8806140891555954],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.94691642996553,159.4528874010535,15.97690457831922],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[117.506523490069,54.87825182127789,61.444782764532974],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[71.64183560798465,129.33825139906398,157.275564534334],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[82.4091909497525,24.700442177497717,25.73245960087124],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[125.22131577774107,104.46634962625173,97.95566911912569],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[94.62641749308219,69.91288398298639,34.60375915790213],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[146.7435014408855,109.06768702840168,59.39728970894062],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[80.10054391924876,19.871051957375002,148.5793334409781],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.77664987608264,73.38602139570186,62.1722930196604],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[96.42556729335061,73.89497633621329,137.83143414421997],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[108.19069151989291,122.4967320575787,85.21360120480979],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[42.97518464607984,46.34007197136802,65.85757661625883],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[130.86940542618024,49.888108913677144,76.15443049374032],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[143.34458979342182,159.06627964186842,63.34522465294507],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[103.54300124916155,11.113380975591909,55.86782443801538],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[25.877816319726406,130.62925590358307,8.099656518388944],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[64.06472344049187,18.647984765462255,39.821918333665636],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[115.96191878520752,74.89758744108238,153.16140322581225],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[115.47406703786893,91.68637628199795,79.41641275376188],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[67.9952461206577,87.7929257844843,145.3788936733619],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[158.5492903853489,114.41347562716908,69.34598396780548],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[47.136866436430836,90.35441190463517,91.04893524691985],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[108.49804092316842,44.3494734847357,79.03630516812743],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[14.225245248891573,45.112273289929,35.08591060982739],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[46.33268997740022,56.26688480139177,33.23620232556572],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[20.700024880498834,5.309261422816476,78.73689030079991],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[103.94684865558048,156.5573676553936,2.0878680896206605],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[48.541156084137654,160.30102121098122,107.23457681227234],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[115.30565169336974,46.65590284757887,31.070147233417046],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[27.84185633091506,26.505112324991195,120.0764928863345],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[48.92286535188401,158.42656050147613,81.05998663289009],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[133.14346399576812,5.808053624037084,139.9820285818139],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[82.18156376199353,125.01814205784203,125.39613313146008],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[150.0373455186439,136.07022770811844,67.78949719418905],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[138.27530921408942,93.80565759718378,154.31190354199637],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[72.21419270190009,79.74484711899152,24.31695516967122],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[62.526302410225966,146.31106532813604,124.67099171459571],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[94.73261401879166,90.24965573505858,104.6363623842177],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[147.42479631568486,39.297119820335645,80.06860268213508],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[23.67529985423161,112.04320468083175,4.160471228620559],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[26.123804991189846,107.9971734989987,12.35171147157077],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[64.25860984625821,3.4851158884366793,57.3287659959921],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[76.36360088361397,140.87909368695063,143.92168516277266],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[101.69924593115464,94.70124355973365,70.61624629357041],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[89.84109160563506,22.15626855868773,2.9998531242905346],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[144.2149878153745,85.75260053384837,116.39060361844095],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[77.21787039295535,125.37252023290964,38.52033220179489],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[54.69467006876286,19.556008936747496,20.835865600754715],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[87.77675955462387,27.59071937080359,0.0459212095602024],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[131.20412113802394,49.43198527583311,12.30027503050836],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[147.58933076274056,31.953544965533748,72.68702051325434],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[109.34792699116626,31.395778741683664,69.65475176811042],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[55.73200425189634,33.0729363391912,109.75530072013426],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[25.518184640407075,78.34300070679421,15.393067322025937],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[36.15646311357895,5.607727804654612,49.77985989210649],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[89.37184256355681,14.693412774337068,31.415777969998732],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[73.2570179248938,40.01226506938723,134.73157135154955],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[91.65322454401567,86.38148427291469,85.32380824746477],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[65.40454822324632,149.3059163507011,156.94411552813645],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.55905332800494,67.75670570420947,46.19890363433732],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[133.96818223463126,37.759537136262175,0.9880784472203841],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[160.7429773024861,74.868979540857,58.445338504592094],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[112.27450942519378,47.94823802650461,99.49855759560597],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[33.506968237130486,18.497970307055294,132.046370705658],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[141.06314324029645,140.73983034192426,4.266558163515837],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[150.48825557719883,43.85774085540248,28.530981931032308],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[140.79779444694702,24.998517001031427,139.0219793014481],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[14.548332032908558,73.27291772270299,129.58905187553017],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[49.25750527135504,40.871710170480405,74.66414994352992],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[2.904585786597722,65.40062746030429,44.33015334670859],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[87.30939060431953,25.032133800709147,63.17686272849211],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[144.72099970938976,144.45584936111868,15.17355142999729],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[41.63494683215093,82.69094870095641,42.62734942364391],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[98.88264282444433,127.70419027400155,76.49503730865996],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[24.417513765469067,19.87667858810002,47.374688259383355],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[34.58654031827965,6.821363750645759,44.75228772662551],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[127.77048275478268,114.20083910704098,40.977307168171826],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[158.80963359968686,156.56328953587231,122.33581416660827],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[64.95820263851421,96.09867502018841,157.32166394295848],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[144.65274374353834,119.0383340554589,164.1500529379179],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[77.08212934987334,11.149902734457115,99.30073117251985],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[15.858847528394918,31.397800431391545,44.65321129853295],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[64.97637523585558,40.27323312711342,96.31607281837641],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[70.99196161161763,118.68639868028296,14.093431978000822],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[142.9565009263372,54.431470727396004,110.92192700737976],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[157.97785981480456,127.14131482962927,131.02420590170658],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[135.09742964446858,105.60410311995484,117.63928137187126],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[66.48222312723183,3.8518222407699563,3.7422742167606025],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[66.17659701497145,133.40718351485793,79.77238313777644],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[117.712299505812,162.76568259956306,75.22709671959934],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[97.91706091364162,23.94806479554895,78.51465355335657],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[4.812748310315832,161.28339296275615,95.00147175818081],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[116.45262039342586,37.22795657665204,0.36379891908474793],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[90.350085137152,21.30933606053465,129.52643819236314],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[52.16243497107297,130.7011995765117,30.40286847155124],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[92.81695286889799,156.34381831907666,85.76370468258811],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[86.76822846052386,125.67251499749678,20.75502332127299],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[0.9661259379113529,143.74797450300798,117.88185863784143],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[100.07740156599766,14.418322881205004,2.2604139939678447],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[47.96207805766358,107.8943096109323,112.60255320737984],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[142.59494331385852,113.19967292550932,62.70234141164797],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[7.759232593146928,39.581282337171245,90.15222971026823],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[26.217729080318563,79.54996040993696,34.59665072145202],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[74.04721960562155,55.08153817041667,98.11902028801612],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[82.34189034548399,13.29119406673929,9.617642229330624],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[31.40194029599308,110.19146809584656,100.7934920771938],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[10.982998076924844,97.89804006818602,116.8491254188291],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[161.78019288669387,22.543456561856704,45.16826189483299],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.60280525118139,5.294784750277723,158.0904605838204],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[17.987372711502204,94.79047787725898,72.4366927426611],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[0.7012952470728495,84.68815577270556,100.23293158043543],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[48.936840119896885,76.70660768875531,38.100377335946355],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.0934896935056,99.10024633001683,67.96759892949252],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[46.01605993426292,86.49259369134462,119.69261740564116],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[45.21430532922799,5.204931441069867,124.4825043947749],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[53.72730130254021,26.308899558578545,138.80208389586488],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[163.56837326609138,40.711462054508296,93.09777358116824],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[56.210075631512794,25.076271942887484,150.76471842759332],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[75.05611906554887,156.01187788456667,164.0567765187326],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[120.3010007606092,23.77764015042215,45.55483160284308],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[156.0983083389393,35.39222646743425,137.60136501460266],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[140.31271487224373,93.63711792651893,46.73787835819649],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[137.17016916684776,58.41182031942049,91.33482664057544],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[49.31174698861181,121.79029477320886,35.68967442075662],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[150.19703192378648,115.58522465948849,130.55645624894308],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[22.937081837578987,135.89517397258672,152.62109983446248],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[36.12016665036412,107.01989102196349,82.8593843814593],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[159.48072556223127,21.06192603915474,156.93018360956785],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[33.30187376592324,32.94459785653135,50.2139627774104],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[92.92489039263752,100.06438677929573,126.22298710066109],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[150.25734478719784,62.70083115327179,138.71130305146372],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[50.55026589557154,98.00909231130653,18.460953920358367],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[18.485399250330303,114.79518351192907,157.65113510119446],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[60.1032689680236,114.7259742696706,75.43076206161228],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[117.43252861181871,36.273312818312164,79.75922684914106],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[39.71588450308101,94.79441850343,72.0906227358273],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[50.44585467407924,94.371816038164,121.77908091962581],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[142.74463083626327,164.9281062415761,164.8751339694963],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[134.32567468138393,82.72794406755844,130.3234910082647],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}},{"kind":"Sphere","center":[81.40592558495055,134.26463181648387,145.36757007824636],"radius":10,"material":{"kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}}]}}}],"priority_objects":[{"kind":"Quad","q":[123,554,147],"u":[300,0,0],"v":[0,0,265],"material":{"kind":"DiffuseLight","emit":{"kind":"SolidColor","color":[7,7,7]}}}]} \ No newline at end of file +{"time_0":0,"time_1":1,"camera":{"look_from":[478,278,-600],"look_at":[278,278,0],"up":[0,1,0],"vertical_fov":40,"aperture":0,"focus_distance":10},"background_color":[0,0,0],"objects":[{"kind":"Boxy","corner_0":[-1000,0,-1000],"corner_1":[-900.00001,30.996897802937667,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,-900],"corner_1":[-900.00001,48.39439743088514,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,-800],"corner_1":[-900.00001,92.3426598091589,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,-700],"corner_1":[-900.00001,23.71693760926863,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,-600],"corner_1":[-900.00001,54.12839200697963,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,-500],"corner_1":[-900.00001,89.07649590939205,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,-400],"corner_1":[-900.00001,97.38540245407073,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,-300],"corner_1":[-900.00001,15.576417543813449,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,-200],"corner_1":[-900.00001,23.89264544441786,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,-100],"corner_1":[-900.00001,68.21604127225947,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,0],"corner_1":[-900.00001,65.08284994563918,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,100],"corner_1":[-900.00001,24.869351387521558,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,200],"corner_1":[-900.00001,92.11261230983027,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,300],"corner_1":[-900.00001,63.22050347291473,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,400],"corner_1":[-900.00001,15.436785232536089,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,500],"corner_1":[-900.00001,64.38655611618137,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,600],"corner_1":[-900.00001,17.14820573444986,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,700],"corner_1":[-900.00001,38.974346602122374,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,800],"corner_1":[-900.00001,33.63955086758799,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-1000,0,900],"corner_1":[-900.00001,87.91021456233558,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,-1000],"corner_1":[-800.00001,87.61375357677353,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,-900],"corner_1":[-800.00001,72.06089383781912,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,-800],"corner_1":[-800.00001,39.81965111620421,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,-700],"corner_1":[-800.00001,18.54485232527412,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,-600],"corner_1":[-800.00001,92.40581693870976,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,-500],"corner_1":[-800.00001,98.9861365527499,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,-400],"corner_1":[-800.00001,62.84405657805802,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,-300],"corner_1":[-800.00001,79.20510175898923,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,-200],"corner_1":[-800.00001,47.52846844228245,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,-100],"corner_1":[-800.00001,12.764599143065873,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,0],"corner_1":[-800.00001,42.643148424521854,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,100],"corner_1":[-800.00001,34.13328985707011,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,200],"corner_1":[-800.00001,44.92942029568847,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,300],"corner_1":[-800.00001,86.76676744942911,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,400],"corner_1":[-800.00001,25.77577646808237,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,500],"corner_1":[-800.00001,53.61780451547694,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,600],"corner_1":[-800.00001,95.64031327808848,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,700],"corner_1":[-800.00001,75.60365403540447,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,800],"corner_1":[-800.00001,27.87308197256862,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-900,0,900],"corner_1":[-800.00001,16.331381452813382,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,-1000],"corner_1":[-700.00001,75.24700696666443,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,-900],"corner_1":[-700.00001,64.2505892931299,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,-800],"corner_1":[-700.00001,49.39805321446759,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,-700],"corner_1":[-700.00001,80.24914508204942,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,-600],"corner_1":[-700.00001,28.69233880401867,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,-500],"corner_1":[-700.00001,75.65037753337198,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,-400],"corner_1":[-700.00001,27.937576490062508,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,-300],"corner_1":[-700.00001,75.76719921017406,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,-200],"corner_1":[-700.00001,19.509370183415847,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,-100],"corner_1":[-700.00001,62.300196931025184,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,0],"corner_1":[-700.00001,35.807594868768646,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,100],"corner_1":[-700.00001,27.032428723268843,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,200],"corner_1":[-700.00001,26.614066628747285,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,300],"corner_1":[-700.00001,12.023507802647224,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,400],"corner_1":[-700.00001,82.21086951276021,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,500],"corner_1":[-700.00001,54.683627089947116,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,600],"corner_1":[-700.00001,100.37254128858045,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,700],"corner_1":[-700.00001,67.36327199765998,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,800],"corner_1":[-700.00001,57.01843189007977,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-800,0,900],"corner_1":[-700.00001,74.40848544211913,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,-1000],"corner_1":[-600.00001,68.50150803166304,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,-900],"corner_1":[-600.00001,34.27375263472892,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,-800],"corner_1":[-600.00001,82.27524500784872,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,-700],"corner_1":[-600.00001,61.15557424275649,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,-600],"corner_1":[-600.00001,54.74599091898858,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,-500],"corner_1":[-600.00001,72.51460768784236,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,-400],"corner_1":[-600.00001,25.59844753956535,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,-300],"corner_1":[-600.00001,81.77165849996051,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,-200],"corner_1":[-600.00001,23.084562737833203,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,-100],"corner_1":[-600.00001,30.892075269272166,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,0],"corner_1":[-600.00001,30.72590814735164,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,100],"corner_1":[-600.00001,28.29255121733287,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,200],"corner_1":[-600.00001,47.41029121088153,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,300],"corner_1":[-600.00001,75.06448153704542,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,400],"corner_1":[-600.00001,69.27618741947325,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,500],"corner_1":[-600.00001,15.778254812577675,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,600],"corner_1":[-600.00001,92.63017293845108,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,700],"corner_1":[-600.00001,10.457537732734863,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,800],"corner_1":[-600.00001,20.731504418734175,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-700,0,900],"corner_1":[-600.00001,58.32310178523446,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,-1000],"corner_1":[-500.00001,15.824993959130595,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,-900],"corner_1":[-500.00001,16.957605591186645,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,-800],"corner_1":[-500.00001,87.74489107507982,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,-700],"corner_1":[-500.00001,73.52999901112693,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,-600],"corner_1":[-500.00001,32.025755591861305,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,-500],"corner_1":[-500.00001,84.62075729851242,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,-400],"corner_1":[-500.00001,38.119322889158084,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,-300],"corner_1":[-500.00001,14.009552384699962,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,-200],"corner_1":[-500.00001,54.90956504742528,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,-100],"corner_1":[-500.00001,87.76847297029848,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,0],"corner_1":[-500.00001,48.9419854271529,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,100],"corner_1":[-500.00001,53.46213828242482,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,200],"corner_1":[-500.00001,67.36572991951452,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,300],"corner_1":[-500.00001,45.804947270414424,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,400],"corner_1":[-500.00001,73.52578979166975,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,500],"corner_1":[-500.00001,27.73425334051229,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,600],"corner_1":[-500.00001,83.30052775254775,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,700],"corner_1":[-500.00001,98.81235088741045,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,800],"corner_1":[-500.00001,32.3790514748063,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-600,0,900],"corner_1":[-500.00001,73.5566632642339,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,-1000],"corner_1":[-400.00001,24.31862407496533,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,-900],"corner_1":[-400.00001,72.12799460755959,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,-800],"corner_1":[-400.00001,17.972787918713465,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,-700],"corner_1":[-400.00001,10.731426518594212,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,-600],"corner_1":[-400.00001,10.272449534122412,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,-500],"corner_1":[-400.00001,34.67111593236645,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,-400],"corner_1":[-400.00001,50.961483884766075,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,-300],"corner_1":[-400.00001,19.983544711000892,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,-200],"corner_1":[-400.00001,81.01785338411474,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,-100],"corner_1":[-400.00001,23.248153626962523,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,0],"corner_1":[-400.00001,48.15649747883517,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,100],"corner_1":[-400.00001,88.13612297419915,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,200],"corner_1":[-400.00001,24.055059397412208,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,300],"corner_1":[-400.00001,29.390108595442545,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,400],"corner_1":[-400.00001,43.565873411971694,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,500],"corner_1":[-400.00001,63.328329158656,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,600],"corner_1":[-400.00001,49.61457364543563,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,700],"corner_1":[-400.00001,76.13390719701162,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,800],"corner_1":[-400.00001,65.4986248111119,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-500,0,900],"corner_1":[-400.00001,97.93457906236983,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,-1000],"corner_1":[-300.00001,62.83378850904166,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,-900],"corner_1":[-300.00001,59.605354973818336,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,-800],"corner_1":[-300.00001,12.109414400074632,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,-700],"corner_1":[-300.00001,80.79330564070776,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,-600],"corner_1":[-300.00001,61.43411210979601,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,-500],"corner_1":[-300.00001,73.28001029562884,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,-400],"corner_1":[-300.00001,13.263733923526129,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,-300],"corner_1":[-300.00001,63.88710306747632,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,-200],"corner_1":[-300.00001,34.212542274203784,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,-100],"corner_1":[-300.00001,67.45790433222152,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,0],"corner_1":[-300.00001,40.023383283253295,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,100],"corner_1":[-300.00001,29.59168663499659,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,200],"corner_1":[-300.00001,38.61117937086501,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,300],"corner_1":[-300.00001,98.014558975,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,400],"corner_1":[-300.00001,62.17860137259642,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,500],"corner_1":[-300.00001,90.02435470013609,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,600],"corner_1":[-300.00001,76.6348972701616,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,700],"corner_1":[-300.00001,33.96178196573646,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,800],"corner_1":[-300.00001,100.75909776657016,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-400,0,900],"corner_1":[-300.00001,43.08698177868304,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,-1000],"corner_1":[-200.00001,95.02762276325187,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,-900],"corner_1":[-200.00001,31.479233453221497,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,-800],"corner_1":[-200.00001,77.13103969582635,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,-700],"corner_1":[-200.00001,10.812274642474168,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,-600],"corner_1":[-200.00001,12.171330880740616,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,-500],"corner_1":[-200.00001,82.69278206300545,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,-400],"corner_1":[-200.00001,53.48231442432093,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,-300],"corner_1":[-200.00001,54.08047674496168,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,-200],"corner_1":[-200.00001,87.97774452917092,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,-100],"corner_1":[-200.00001,42.52395851926161,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,0],"corner_1":[-200.00001,46.78074148182176,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,100],"corner_1":[-200.00001,86.35056000566563,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,200],"corner_1":[-200.00001,14.470737008059299,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,300],"corner_1":[-200.00001,47.2045940890298,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,400],"corner_1":[-200.00001,43.6814693171277,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,500],"corner_1":[-200.00001,37.443737489202974,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,600],"corner_1":[-200.00001,73.0440841707836,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,700],"corner_1":[-200.00001,50.10629272802219,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,800],"corner_1":[-200.00001,14.689152213492317,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-300,0,900],"corner_1":[-200.00001,92.82747947236528,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,-1000],"corner_1":[-100.00001,50.037896133826465,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,-900],"corner_1":[-100.00001,21.575935343467126,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,-800],"corner_1":[-100.00001,44.28122474605529,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,-700],"corner_1":[-100.00001,38.36480789097559,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,-600],"corner_1":[-100.00001,23.524247699361922,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,-500],"corner_1":[-100.00001,59.6862377339707,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,-400],"corner_1":[-100.00001,32.458399916935754,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,-300],"corner_1":[-100.00001,98.09873651293923,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,-200],"corner_1":[-100.00001,20.654232349425268,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,-100],"corner_1":[-100.00001,91.19769597876194,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,0],"corner_1":[-100.00001,31.896017633659177,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,100],"corner_1":[-100.00001,64.30015411137819,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,200],"corner_1":[-100.00001,44.95782372460307,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,300],"corner_1":[-100.00001,69.14889526859344,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,400],"corner_1":[-100.00001,52.639605868359396,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,500],"corner_1":[-100.00001,37.3673144530708,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,600],"corner_1":[-100.00001,88.80337882218134,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,700],"corner_1":[-100.00001,92.87481913594529,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,800],"corner_1":[-100.00001,48.028000541707215,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-200,0,900],"corner_1":[-100.00001,43.9560401828665,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,-1000],"corner_1":[-0.00001,75.63632135660615,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,-900],"corner_1":[-0.00001,77.92052690381118,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,-800],"corner_1":[-0.00001,88.26979554118684,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,-700],"corner_1":[-0.00001,15.128266198264047,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,-600],"corner_1":[-0.00001,23.45132636941336,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,-500],"corner_1":[-0.00001,61.2613072003617,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,-400],"corner_1":[-0.00001,42.1977138663695,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,-300],"corner_1":[-0.00001,99.85335306393877,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,-200],"corner_1":[-0.00001,20.976580817157064,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,-100],"corner_1":[-0.00001,94.50639325962293,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,0],"corner_1":[-0.00001,13.095218366927838,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,100],"corner_1":[-0.00001,98.366974535257,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,200],"corner_1":[-0.00001,86.1448317487721,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,300],"corner_1":[-0.00001,32.90666024718833,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,400],"corner_1":[-0.00001,62.80616950862303,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,500],"corner_1":[-0.00001,77.34243530313198,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,600],"corner_1":[-0.00001,22.436763753277518,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,700],"corner_1":[-0.00001,88.29277612001341,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,800],"corner_1":[-0.00001,84.31984137894966,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[-100,0,900],"corner_1":[-0.00001,28.236825237435028,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,-1000],"corner_1":[99.99999,29.088815540799526,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,-900],"corner_1":[99.99999,98.82013949039475,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,-800],"corner_1":[99.99999,93.05067329866397,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,-700],"corner_1":[99.99999,25.776737972641158,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,-600],"corner_1":[99.99999,22.718605252181128,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,-500],"corner_1":[99.99999,58.56640100438316,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,-400],"corner_1":[99.99999,86.57831002386196,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,-300],"corner_1":[99.99999,11.888518358614855,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,-200],"corner_1":[99.99999,75.67144583011802,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,-100],"corner_1":[99.99999,60.739174156779335,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,0],"corner_1":[99.99999,47.36314556761979,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,100],"corner_1":[99.99999,39.55217685307288,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,200],"corner_1":[99.99999,42.65720937154391,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,300],"corner_1":[99.99999,50.97665238158049,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,400],"corner_1":[99.99999,34.781789280441686,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,500],"corner_1":[99.99999,21.513649824128592,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,600],"corner_1":[99.99999,58.13314480754264,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,700],"corner_1":[99.99999,48.68168669500945,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,800],"corner_1":[99.99999,41.64010006597654,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[0,0,900],"corner_1":[99.99999,100.30879288533065,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,-1000],"corner_1":[199.99999,58.33622285335481,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,-900],"corner_1":[199.99999,38.42680611766705,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,-800],"corner_1":[199.99999,83.3480066361351,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,-700],"corner_1":[199.99999,64.56123230743398,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,-600],"corner_1":[199.99999,97.21062192418162,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,-500],"corner_1":[199.99999,100.45980608602945,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,-400],"corner_1":[199.99999,99.68882893791235,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,-300],"corner_1":[199.99999,77.61321685652078,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,-200],"corner_1":[199.99999,24.660888329790534,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,-100],"corner_1":[199.99999,91.34887864241713,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,0],"corner_1":[199.99999,89.71047369243715,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,100],"corner_1":[199.99999,46.24320429620895,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,200],"corner_1":[199.99999,80.93261594227947,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,300],"corner_1":[199.99999,21.73355516670173,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,400],"corner_1":[199.99999,65.0781241947634,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,500],"corner_1":[199.99999,40.79912952986553,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,600],"corner_1":[199.99999,62.343189692349995,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,700],"corner_1":[199.99999,78.1369034612801,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,800],"corner_1":[199.99999,89.47420079153191,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[100,0,900],"corner_1":[199.99999,63.37084227574343,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,-1000],"corner_1":[299.99999,12.436702160207098,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,-900],"corner_1":[299.99999,46.07059648972573,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,-800],"corner_1":[299.99999,47.14288332692732,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,-700],"corner_1":[299.99999,58.75269436480544,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,-600],"corner_1":[299.99999,51.75890596593353,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,-500],"corner_1":[299.99999,86.04061231928056,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,-400],"corner_1":[299.99999,44.47963075644138,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,-300],"corner_1":[299.99999,11.90417571927679,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,-200],"corner_1":[299.99999,31.06045348997178,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,-100],"corner_1":[299.99999,64.49660568516634,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,0],"corner_1":[299.99999,84.78831694621975,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,100],"corner_1":[299.99999,74.25416588418193,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,200],"corner_1":[299.99999,22.243627604350298,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,300],"corner_1":[299.99999,91.37604208646086,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,400],"corner_1":[299.99999,99.22031563104908,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,500],"corner_1":[299.99999,50.27872116393775,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,600],"corner_1":[299.99999,99.42022060930182,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,700],"corner_1":[299.99999,16.355381029997016,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,800],"corner_1":[299.99999,40.603819250257814,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[200,0,900],"corner_1":[299.99999,57.08655661513074,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,-1000],"corner_1":[399.99999,87.82327020434892,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,-900],"corner_1":[399.99999,28.612408155579217,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,-800],"corner_1":[399.99999,65.27679498921968,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,-700],"corner_1":[399.99999,25.84820791084166,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,-600],"corner_1":[399.99999,14.438485696024838,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,-500],"corner_1":[399.99999,99.44808792498208,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,-400],"corner_1":[399.99999,56.02209975437311,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,-300],"corner_1":[399.99999,60.95312753749774,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,-200],"corner_1":[399.99999,13.72455722575728,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,-100],"corner_1":[399.99999,36.3911443482578,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,0],"corner_1":[399.99999,10.032384141183972,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,100],"corner_1":[399.99999,79.41131077422648,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,200],"corner_1":[399.99999,25.573160014794425,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,300],"corner_1":[399.99999,79.97720596225038,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,400],"corner_1":[399.99999,49.36040235732493,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,500],"corner_1":[399.99999,92.15386707121189,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,600],"corner_1":[399.99999,13.235825510363538,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,700],"corner_1":[399.99999,52.275555176406236,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,800],"corner_1":[399.99999,96.36844386374565,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[300,0,900],"corner_1":[399.99999,98.26896645708771,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,-1000],"corner_1":[499.99999,61.35875380442697,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,-900],"corner_1":[499.99999,93.72972152201599,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,-800],"corner_1":[499.99999,69.44391327957302,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,-700],"corner_1":[499.99999,92.47073132411916,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,-600],"corner_1":[499.99999,31.533288134697326,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,-500],"corner_1":[499.99999,31.141863379894893,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,-400],"corner_1":[499.99999,50.80924506725127,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,-300],"corner_1":[499.99999,63.38833921599175,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,-200],"corner_1":[499.99999,35.007246472207925,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,-100],"corner_1":[499.99999,56.34126940033371,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,0],"corner_1":[499.99999,56.67398933650609,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,100],"corner_1":[499.99999,31.555003635072907,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,200],"corner_1":[499.99999,19.642031745015764,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,300],"corner_1":[499.99999,18.862335027421473,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,400],"corner_1":[499.99999,32.55871898133657,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,500],"corner_1":[499.99999,76.49506409676748,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,600],"corner_1":[499.99999,56.01658413443699,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,700],"corner_1":[499.99999,38.964578518757136,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,800],"corner_1":[499.99999,100.00059319550546,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[400,0,900],"corner_1":[499.99999,13.647347691134696,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,-1000],"corner_1":[599.99999,11.908832321739315,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,-900],"corner_1":[599.99999,24.280672303526643,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,-800],"corner_1":[599.99999,16.02256618334159,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,-700],"corner_1":[599.99999,10.995332317463722,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,-600],"corner_1":[599.99999,16.58607617130904,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,-500],"corner_1":[599.99999,12.471814881173632,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,-400],"corner_1":[599.99999,49.15731578991152,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,-300],"corner_1":[599.99999,63.437200126415895,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,-200],"corner_1":[599.99999,29.665377932454252,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,-100],"corner_1":[599.99999,99.62252999464383,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,0],"corner_1":[599.99999,95.07605753315367,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,100],"corner_1":[599.99999,94.87098444972656,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,200],"corner_1":[599.99999,58.08514916003729,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,300],"corner_1":[599.99999,71.21420482110594,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,400],"corner_1":[599.99999,30.85046462351302,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,500],"corner_1":[599.99999,72.77864891501517,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,600],"corner_1":[599.99999,12.48999037643343,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,700],"corner_1":[599.99999,44.33642666689187,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,800],"corner_1":[599.99999,36.67442331848306,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[500,0,900],"corner_1":[599.99999,79.58591408489671,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,-1000],"corner_1":[699.99999,43.55576147044942,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,-900],"corner_1":[699.99999,68.1553687561027,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,-800],"corner_1":[699.99999,95.36437593969366,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,-700],"corner_1":[699.99999,54.24533879559417,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,-600],"corner_1":[699.99999,44.02373162858367,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,-500],"corner_1":[699.99999,66.48432651062214,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,-400],"corner_1":[699.99999,74.35474304691954,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,-300],"corner_1":[699.99999,50.51081419343005,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,-200],"corner_1":[699.99999,72.51970900006197,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,-100],"corner_1":[699.99999,88.42824375188464,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,0],"corner_1":[699.99999,76.27056569004844,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,100],"corner_1":[699.99999,48.19286571560458,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,200],"corner_1":[699.99999,61.24380411885611,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,300],"corner_1":[699.99999,22.5678059797957,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,400],"corner_1":[699.99999,54.27801989700292,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,500],"corner_1":[699.99999,45.46156851757695,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,600],"corner_1":[699.99999,41.7096422972825,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,700],"corner_1":[699.99999,29.851901851430544,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,800],"corner_1":[699.99999,43.89790912419591,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[600,0,900],"corner_1":[699.99999,70.63011336205162,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,-1000],"corner_1":[799.99999,50.89422940129858,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,-900],"corner_1":[799.99999,77.46112354706582,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,-800],"corner_1":[799.99999,77.0337436969902,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,-700],"corner_1":[799.99999,32.419408456192585,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,-600],"corner_1":[799.99999,51.39000071786794,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,-500],"corner_1":[799.99999,60.90578458184764,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,-400],"corner_1":[799.99999,61.32290984231052,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,-300],"corner_1":[799.99999,49.50235914872217,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,-200],"corner_1":[799.99999,38.24057205127946,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,-100],"corner_1":[799.99999,12.305959769716752,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,0],"corner_1":[799.99999,47.78954714924834,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,100],"corner_1":[799.99999,73.17965468865114,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,200],"corner_1":[799.99999,74.37807696157472,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,300],"corner_1":[799.99999,69.77902905176126,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,400],"corner_1":[799.99999,66.58943071540756,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,500],"corner_1":[799.99999,37.6619784409261,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,600],"corner_1":[799.99999,68.5439117026446,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,700],"corner_1":[799.99999,62.87362787041642,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,800],"corner_1":[799.99999,53.46819679776167,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[700,0,900],"corner_1":[799.99999,73.90798701588568,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,-1000],"corner_1":[899.99999,70.30672898049463,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,-900],"corner_1":[899.99999,72.3873443211074,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,-800],"corner_1":[899.99999,65.05596300719978,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,-700],"corner_1":[899.99999,58.77314531161579,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,-600],"corner_1":[899.99999,25.029481108897194,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,-500],"corner_1":[899.99999,28.407924109236824,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,-400],"corner_1":[899.99999,84.16840916952056,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,-300],"corner_1":[899.99999,12.17259115710739,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,-200],"corner_1":[899.99999,100.53252688039014,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,-100],"corner_1":[899.99999,21.688680397948826,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,0],"corner_1":[899.99999,74.53204313615427,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,100],"corner_1":[899.99999,18.694974680305062,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,200],"corner_1":[899.99999,38.71416843087983,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,300],"corner_1":[899.99999,40.17697442447351,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,400],"corner_1":[899.99999,71.68321887298839,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,500],"corner_1":[899.99999,11.550218107729924,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,600],"corner_1":[899.99999,72.59206201733417,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,700],"corner_1":[899.99999,90.42721659928202,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,800],"corner_1":[899.99999,54.7022476094752,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[800,0,900],"corner_1":[899.99999,50.6078453668944,999.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,-1000],"corner_1":[999.99999,96.38768219088273,-900.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,-900],"corner_1":[999.99999,15.383185806072184,-800.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,-800],"corner_1":[999.99999,19.235189402382638,-700.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,-700],"corner_1":[999.99999,18.601860559652053,-600.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,-600],"corner_1":[999.99999,96.54218864933404,-500.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,-500],"corner_1":[999.99999,92.92990123727525,-400.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,-400],"corner_1":[999.99999,59.67047211228215,-300.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,-300],"corner_1":[999.99999,34.73901248188089,-200.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,-200],"corner_1":[999.99999,56.3097013419757,-100.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,-100],"corner_1":[999.99999,16.469924335829706,-0.00001],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,0],"corner_1":[999.99999,31.744306758514615,99.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,100],"corner_1":[999.99999,30.46807122410623,199.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,200],"corner_1":[999.99999,19.712722820039826,299.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,300],"corner_1":[999.99999,77.5441243324286,399.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,400],"corner_1":[999.99999,74.49945172515994,499.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,500],"corner_1":[999.99999,21.206650072709472,599.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,600],"corner_1":[999.99999,32.50341942586802,699.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,700],"corner_1":[999.99999,53.04947375422125,799.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,800],"corner_1":[999.99999,42.91306835555682,899.99999],"material":"ground material"},{"kind":"Boxy","corner_0":[900,0,900],"corner_1":[999.99999,48.76883432995979,999.99999],"material":"ground material"},{"kind":"Quad","priority":true,"q":[123,554,147],"u":[300,0,0],"v":[0,0,265],"material":"big lamp"},{"kind":"MovingSphere","center_0":[400,400,200],"center_1":[420,400,200],"time_0":0,"time_1":1,"radius":50,"material":"moving sphere material"},{"kind":"Sphere","center":[260,150,45],"radius":50,"material":"glass"},{"kind":"Sphere","center":[0,150,145],"radius":50,"material":"matte metal"},{"kind":"Sphere","center":[360,150,145],"radius":70,"material":"glass"},{"kind":"ConstantMedium","density":0.2,"boundary":{"kind":"Sphere","center":[360,150,145],"radius":70,"material":"glass"},"texture":{"kind":"SolidColor","color":[0.2,0.4,0.9]}},{"kind":"ConstantMedium","density":0.0001,"boundary":{"kind":"Sphere","center":[0,0,0],"radius":5000},"texture":{"kind":"SolidColor","color":[1,1,1]}},{"kind":"Translate","offset":[-100,270,395],"object":{"kind":"RotateY","angle":15,"object":{"kind":"ObjectList","objects":[{"kind":"Sphere","center":[104.9727082221928,34.9340338861491,105.43283054318333],"radius":10,"material":"white"},{"kind":"Sphere","center":[2.1868308986420457,57.97645872809212,26.44007021072452],"radius":10,"material":"white"},{"kind":"Sphere","center":[56.30213267460697,113.79099706480429,116.11492325128185],"radius":10,"material":"white"},{"kind":"Sphere","center":[109.26310737396027,111.83615786095964,7.104085645336476],"radius":10,"material":"white"},{"kind":"Sphere","center":[163.5016803455869,7.0132699733691775,141.54084013716417],"radius":10,"material":"white"},{"kind":"Sphere","center":[106.85708644551246,44.82488317258663,36.701653559640235],"radius":10,"material":"white"},{"kind":"Sphere","center":[25.31148948291935,67.63735614682393,159.04921347192584],"radius":10,"material":"white"},{"kind":"Sphere","center":[71.20949028570516,53.465582178523235,110.43922577517876],"radius":10,"material":"white"},{"kind":"Sphere","center":[98.22263217437369,27.408001015955833,66.8686780358805],"radius":10,"material":"white"},{"kind":"Sphere","center":[108.32393082408724,147.1038166389245,83.52001876922888],"radius":10,"material":"white"},{"kind":"Sphere","center":[58.93730110223761,92.75692043534097,157.29853463196469],"radius":10,"material":"white"},{"kind":"Sphere","center":[30.30019399165946,107.8734314593598,37.834615746811096],"radius":10,"material":"white"},{"kind":"Sphere","center":[149.02589013372966,25.526293064421694,84.59034544895853],"radius":10,"material":"white"},{"kind":"Sphere","center":[102.48830180759475,129.15591202717812,54.25929154552049],"radius":10,"material":"white"},{"kind":"Sphere","center":[50.7228828660259,111.61902646929575,160.47982545542092],"radius":10,"material":"white"},{"kind":"Sphere","center":[75.87713311762879,10.671028698088703,64.73172436594282],"radius":10,"material":"white"},{"kind":"Sphere","center":[8.794100169067825,49.93349559666586,109.81602267000554],"radius":10,"material":"white"},{"kind":"Sphere","center":[25.54302742654195,28.3251627826948,75.95617214921572],"radius":10,"material":"white"},{"kind":"Sphere","center":[158.48331996459123,44.86985831177872,53.302208921858465],"radius":10,"material":"white"},{"kind":"Sphere","center":[8.892224113222616,130.95260090912367,116.25269102374175],"radius":10,"material":"white"},{"kind":"Sphere","center":[4.47352985330666,45.90213874534547,107.4563275822986],"radius":10,"material":"white"},{"kind":"Sphere","center":[29.48130149976902,144.43696725823196,63.59066877644146],"radius":10,"material":"white"},{"kind":"Sphere","center":[0.8175742686586596,75.57323808859044,11.983552708006718],"radius":10,"material":"white"},{"kind":"Sphere","center":[122.52069060195757,18.127277951198565,153.28703540221278],"radius":10,"material":"white"},{"kind":"Sphere","center":[90.36050572475044,5.75370045991066,41.00898395155785],"radius":10,"material":"white"},{"kind":"Sphere","center":[81.04585687021482,68.18707445280732,71.45871389696346],"radius":10,"material":"white"},{"kind":"Sphere","center":[36.557995205343026,92.52270584735363,135.74057466228112],"radius":10,"material":"white"},{"kind":"Sphere","center":[29.699606791305055,18.58628983473656,119.78691454641447],"radius":10,"material":"white"},{"kind":"Sphere","center":[96.93502165559669,8.870253829439527,127.86208038844693],"radius":10,"material":"white"},{"kind":"Sphere","center":[31.75467034737913,47.29086253291522,157.9865242115382],"radius":10,"material":"white"},{"kind":"Sphere","center":[104.49040229024186,12.134415507939877,18.404755715064187],"radius":10,"material":"white"},{"kind":"Sphere","center":[120.25794405017832,87.74720547273157,92.11133496721392],"radius":10,"material":"white"},{"kind":"Sphere","center":[26.975626987555657,99.29579907286757,51.67349302007108],"radius":10,"material":"white"},{"kind":"Sphere","center":[121.38545588923067,6.039803349280779,156.4467288502489],"radius":10,"material":"white"},{"kind":"Sphere","center":[130.33974971050895,87.17440052001272,163.60902355629594],"radius":10,"material":"white"},{"kind":"Sphere","center":[60.5892251231472,58.70975855922762,164.2904606325399],"radius":10,"material":"white"},{"kind":"Sphere","center":[135.08843243443675,108.7688878127493,39.32998347741009],"radius":10,"material":"white"},{"kind":"Sphere","center":[6.230887272912408,157.81293033510244,151.5510719700892],"radius":10,"material":"white"},{"kind":"Sphere","center":[9.730086432280464,19.705134219698888,73.51852526641238],"radius":10,"material":"white"},{"kind":"Sphere","center":[60.328172046136004,125.07432855297763,36.90888792587842],"radius":10,"material":"white"},{"kind":"Sphere","center":[44.23781677571065,58.9587390276555,3.9929171448746095],"radius":10,"material":"white"},{"kind":"Sphere","center":[68.51455336362622,34.870508702582505,133.98155153881535],"radius":10,"material":"white"},{"kind":"Sphere","center":[18.521105397277733,8.14564278312044,120.36455213714369],"radius":10,"material":"white"},{"kind":"Sphere","center":[89.52157548643007,115.0112496491284,35.418378028951345],"radius":10,"material":"white"},{"kind":"Sphere","center":[32.598389667046106,44.290993427406946,105.302886064007],"radius":10,"material":"white"},{"kind":"Sphere","center":[119.0703107717166,160.68074536646765,86.19896906852759],"radius":10,"material":"white"},{"kind":"Sphere","center":[93.30476787537573,104.60400558527928,103.55364968643968],"radius":10,"material":"white"},{"kind":"Sphere","center":[66.93936172073268,101.51836021105161,107.20250121607829],"radius":10,"material":"white"},{"kind":"Sphere","center":[65.11619223623497,57.43959122259449,82.5416941876199],"radius":10,"material":"white"},{"kind":"Sphere","center":[13.606277290718987,155.02287333543464,144.65236054007423],"radius":10,"material":"white"},{"kind":"Sphere","center":[141.43666282088242,3.1254739890507945,109.0283866381446],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.7737681710113,38.89629122297567,95.02832071561373],"radius":10,"material":"white"},{"kind":"Sphere","center":[0.015867103531505,31.131670499702953,18.889737608179523],"radius":10,"material":"white"},{"kind":"Sphere","center":[55.46303681313583,106.24759607729362,59.524032176624544],"radius":10,"material":"white"},{"kind":"Sphere","center":[77.74552972012131,29.886144618707043,159.18288567863095],"radius":10,"material":"white"},{"kind":"Sphere","center":[94.88701208873134,119.10131960643318,131.4531176578933],"radius":10,"material":"white"},{"kind":"Sphere","center":[115.23517251006525,163.92243472192757,41.61134991392824],"radius":10,"material":"white"},{"kind":"Sphere","center":[0.21899554923511255,120.10313051849593,43.30572135606816],"radius":10,"material":"white"},{"kind":"Sphere","center":[62.946273504189406,14.551052277315042,111.67599559473666],"radius":10,"material":"white"},{"kind":"Sphere","center":[24.407687379901073,102.84178017132463,72.00854335694962],"radius":10,"material":"white"},{"kind":"Sphere","center":[49.11660804520764,12.062915173914256,119.4855057543313],"radius":10,"material":"white"},{"kind":"Sphere","center":[135.12279557180176,152.41091913264592,79.0823848252841],"radius":10,"material":"white"},{"kind":"Sphere","center":[73.47083676211288,131.15246640187218,39.9921435636037],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.46780428773282,23.441221875270855,7.982465059754014],"radius":10,"material":"white"},{"kind":"Sphere","center":[54.24356519872839,103.27484192015966,43.32532680729259],"radius":10,"material":"white"},{"kind":"Sphere","center":[72.2627866056622,43.62473100855735,5.8874890502900525],"radius":10,"material":"white"},{"kind":"Sphere","center":[11.630227810875816,94.7734645302606,133.1659491426904],"radius":10,"material":"white"},{"kind":"Sphere","center":[151.1468014706769,1.6616457508492932,21.876450195636668],"radius":10,"material":"white"},{"kind":"Sphere","center":[90.14142975204653,71.49085960555857,143.657774753413],"radius":10,"material":"white"},{"kind":"Sphere","center":[129.85773364007196,125.78988457753272,156.7618484187934],"radius":10,"material":"white"},{"kind":"Sphere","center":[161.29811113214996,61.31505437503979,126.5227231542128],"radius":10,"material":"white"},{"kind":"Sphere","center":[82.40172891704262,134.20733504282137,153.85900463051098],"radius":10,"material":"white"},{"kind":"Sphere","center":[55.943444037572796,144.48029779539212,131.56589497698303],"radius":10,"material":"white"},{"kind":"Sphere","center":[132.9666490361734,71.73613194649995,147.11329932609416],"radius":10,"material":"white"},{"kind":"Sphere","center":[69.14182776317979,48.37512631763948,52.00308653929346],"radius":10,"material":"white"},{"kind":"Sphere","center":[155.06755311499043,11.342587410047587,98.35259060508565],"radius":10,"material":"white"},{"kind":"Sphere","center":[142.86243910300402,69.85306402046699,152.9571979853238],"radius":10,"material":"white"},{"kind":"Sphere","center":[56.82199238857681,145.85618152729737,150.4772822312694],"radius":10,"material":"white"},{"kind":"Sphere","center":[157.0154476481226,120.38390615425521,150.08309115093977],"radius":10,"material":"white"},{"kind":"Sphere","center":[128.83307119333668,33.79941911545238,128.39907514215804],"radius":10,"material":"white"},{"kind":"Sphere","center":[16.047527207541695,121.72436606836428,44.04997523235986],"radius":10,"material":"white"},{"kind":"Sphere","center":[63.95958904837389,70.96683411062794,148.97814104937402],"radius":10,"material":"white"},{"kind":"Sphere","center":[7.12091194613389,22.577413742128638,129.44773017517568],"radius":10,"material":"white"},{"kind":"Sphere","center":[88.63849501385769,61.06839425342662,11.078014092695552],"radius":10,"material":"white"},{"kind":"Sphere","center":[1.0158980302858789,82.63669469233358,26.590900284717275],"radius":10,"material":"white"},{"kind":"Sphere","center":[91.11580888125799,55.39158653423658,150.2200808600663],"radius":10,"material":"white"},{"kind":"Sphere","center":[39.19029505409795,66.72729074437693,164.1281213700633],"radius":10,"material":"white"},{"kind":"Sphere","center":[147.15518007944672,42.76127602531475,143.65691398792302],"radius":10,"material":"white"},{"kind":"Sphere","center":[120.36418789710987,46.878145210753345,69.108600469524],"radius":10,"material":"white"},{"kind":"Sphere","center":[87.76186891160542,34.01790310356263,93.2346509151953],"radius":10,"material":"white"},{"kind":"Sphere","center":[108.11403959873203,50.95074741864458,6.8603766816879554],"radius":10,"material":"white"},{"kind":"Sphere","center":[79.29691975112002,16.79123930977623,39.213286101776696],"radius":10,"material":"white"},{"kind":"Sphere","center":[49.0961455035514,87.34873587105805,131.10896235603917],"radius":10,"material":"white"},{"kind":"Sphere","center":[8.077062548324326,20.76787763070327,72.97432783654946],"radius":10,"material":"white"},{"kind":"Sphere","center":[81.7992569066856,35.78045800949139,101.04364546854634],"radius":10,"material":"white"},{"kind":"Sphere","center":[103.14227071426214,40.231374110498095,21.685418917073786],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.58142857782683,5.403985963613824,96.44106383822228],"radius":10,"material":"white"},{"kind":"Sphere","center":[138.34853632389434,124.01472267049441,0.8070034011265614],"radius":10,"material":"white"},{"kind":"Sphere","center":[5.179318145941677,10.138385829951597,92.20605947156618],"radius":10,"material":"white"},{"kind":"Sphere","center":[114.86356467705446,139.4149122108887,107.64503508013499],"radius":10,"material":"white"},{"kind":"Sphere","center":[2.050696034886994,120.77268423726169,20.975660498683446],"radius":10,"material":"white"},{"kind":"Sphere","center":[89.00613207424992,59.27739904338434,56.661364650679886],"radius":10,"material":"white"},{"kind":"Sphere","center":[122.49458608597624,81.19448548134523,70.8336987726432],"radius":10,"material":"white"},{"kind":"Sphere","center":[19.97997815487933,146.33643720860104,137.08665449631144],"radius":10,"material":"white"},{"kind":"Sphere","center":[92.80393824239023,58.52413785077817,75.67222575562509],"radius":10,"material":"white"},{"kind":"Sphere","center":[101.46722617526247,86.07504434724618,82.85298147634307],"radius":10,"material":"white"},{"kind":"Sphere","center":[93.3098949818971,128.5954682935398,62.88849655837646],"radius":10,"material":"white"},{"kind":"Sphere","center":[41.40273193721541,144.39741847688478,113.69479841224991],"radius":10,"material":"white"},{"kind":"Sphere","center":[152.09847282211,88.60624562834144,61.826519321743405],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.627968565259344,101.88069696520768,56.0714573209417],"radius":10,"material":"white"},{"kind":"Sphere","center":[44.39520839104853,14.41546651666713,55.24864965956973],"radius":10,"material":"white"},{"kind":"Sphere","center":[108.46877776475971,116.91222688960318,61.470756867388815],"radius":10,"material":"white"},{"kind":"Sphere","center":[154.03960562656562,139.04350230842041,127.5526515044159],"radius":10,"material":"white"},{"kind":"Sphere","center":[16.770008251677922,57.42639148254387,38.08392254982772],"radius":10,"material":"white"},{"kind":"Sphere","center":[116.9188664960963,58.57427203693532,132.58014762981145],"radius":10,"material":"white"},{"kind":"Sphere","center":[133.10644959289564,117.13373394675884,60.321168891436876],"radius":10,"material":"white"},{"kind":"Sphere","center":[59.00790402803786,100.40764650387473,65.46326659722124],"radius":10,"material":"white"},{"kind":"Sphere","center":[96.69493940744955,124.91180449171871,57.48576458189655],"radius":10,"material":"white"},{"kind":"Sphere","center":[81.86630481668824,35.5980790849841,134.59461195028928],"radius":10,"material":"white"},{"kind":"Sphere","center":[81.34969820677796,104.03684139562918,47.16558420224571],"radius":10,"material":"white"},{"kind":"Sphere","center":[130.36661707444364,146.85466674818582,96.32728299599528],"radius":10,"material":"white"},{"kind":"Sphere","center":[86.56704846153723,6.030661106090173,156.64264142449363],"radius":10,"material":"white"},{"kind":"Sphere","center":[20.21679611609564,5.1785924660846945,3.9334685697621374],"radius":10,"material":"white"},{"kind":"Sphere","center":[14.340181762500876,34.1211543965817,45.938181929965154],"radius":10,"material":"white"},{"kind":"Sphere","center":[141.84063353722473,147.5067338001824,18.449159075974453],"radius":10,"material":"white"},{"kind":"Sphere","center":[126.19158367917346,70.12164244253358,125.69727237562647],"radius":10,"material":"white"},{"kind":"Sphere","center":[23.762438849349525,44.549045552149465,14.002572306696354],"radius":10,"material":"white"},{"kind":"Sphere","center":[29.80352182379992,76.84965723365434,59.145341132482514],"radius":10,"material":"white"},{"kind":"Sphere","center":[47.882318638678754,127.87829746888411,9.246185312943718],"radius":10,"material":"white"},{"kind":"Sphere","center":[13.710586160256286,46.6659729249035,122.61606888618194],"radius":10,"material":"white"},{"kind":"Sphere","center":[120.04869151744785,10.156482168359856,72.10815021503815],"radius":10,"material":"white"},{"kind":"Sphere","center":[74.58018214928914,158.08607878994965,149.96613218055512],"radius":10,"material":"white"},{"kind":"Sphere","center":[60.11009713161752,141.8824259274825,42.804694856628394],"radius":10,"material":"white"},{"kind":"Sphere","center":[6.286040266510976,138.9446670643657,84.77384453740838],"radius":10,"material":"white"},{"kind":"Sphere","center":[14.048890166125366,85.2897705651217,151.81817694702067],"radius":10,"material":"white"},{"kind":"Sphere","center":[100.17626079567066,37.42394725107654,38.42385409188694],"radius":10,"material":"white"},{"kind":"Sphere","center":[164.48794295531602,7.35923396469972,17.308872787086557],"radius":10,"material":"white"},{"kind":"Sphere","center":[72.71101210608838,49.05229682117146,1.3458729330788632],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.43934936809646,3.1440829299352124,73.85567588847603],"radius":10,"material":"white"},{"kind":"Sphere","center":[112.34168760375903,34.418022114026506,114.93018469011975],"radius":10,"material":"white"},{"kind":"Sphere","center":[116.01828432220431,109.436258457142,34.18673292016378],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.13586213813586,151.065071338158,156.09615896361007],"radius":10,"material":"white"},{"kind":"Sphere","center":[128.4702132704385,122.60461446782624,64.7967540340994],"radius":10,"material":"white"},{"kind":"Sphere","center":[154.41824784886018,3.962221863418164,89.41579566407684],"radius":10,"material":"white"},{"kind":"Sphere","center":[35.67835584984643,157.41689876523455,140.13332626683018],"radius":10,"material":"white"},{"kind":"Sphere","center":[64.14780089880372,93.94621584838303,78.38646234755075],"radius":10,"material":"white"},{"kind":"Sphere","center":[116.26934938907719,64.27611259432503,70.1639128364062],"radius":10,"material":"white"},{"kind":"Sphere","center":[12.507189280101823,164.4191095720839,30.12158340645782],"radius":10,"material":"white"},{"kind":"Sphere","center":[74.68896562856749,77.6597635683817,68.55523324085443],"radius":10,"material":"white"},{"kind":"Sphere","center":[48.385818301491355,69.34602537636026,33.134785037533],"radius":10,"material":"white"},{"kind":"Sphere","center":[139.06803337557508,164.10340570168944,127.12841777279282],"radius":10,"material":"white"},{"kind":"Sphere","center":[119.69615862839305,93.849476314063,39.79925559787911],"radius":10,"material":"white"},{"kind":"Sphere","center":[85.48280908061048,36.74497873476624,13.251298551462222],"radius":10,"material":"white"},{"kind":"Sphere","center":[126.06433552096577,48.42533954294279,97.41922501934619],"radius":10,"material":"white"},{"kind":"Sphere","center":[135.5644076140591,97.40218527713537,109.68992165320496],"radius":10,"material":"white"},{"kind":"Sphere","center":[118.09673118299524,75.05186413874752,90.7919730301192],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.56284566803099,141.6917809990683,80.52092937824251],"radius":10,"material":"white"},{"kind":"Sphere","center":[54.22536035626342,74.49564801161335,58.705972471869124],"radius":10,"material":"white"},{"kind":"Sphere","center":[86.74633112030688,39.80611616839967,147.3840721694757],"radius":10,"material":"white"},{"kind":"Sphere","center":[59.7539462181696,146.68887186046825,48.94725773315823],"radius":10,"material":"white"},{"kind":"Sphere","center":[94.40432041398026,111.84752223114663,93.11322130366385],"radius":10,"material":"white"},{"kind":"Sphere","center":[133.91997350677482,97.84010699040844,120.43558313704891],"radius":10,"material":"white"},{"kind":"Sphere","center":[28.3444070178286,22.394406291416836,19.41172600423751],"radius":10,"material":"white"},{"kind":"Sphere","center":[32.08889647064549,148.1277066719565,102.86322399037878],"radius":10,"material":"white"},{"kind":"Sphere","center":[92.88014185699112,23.499489228459286,23.59182577492581],"radius":10,"material":"white"},{"kind":"Sphere","center":[98.67531111673306,48.09887218773167,44.154843416883],"radius":10,"material":"white"},{"kind":"Sphere","center":[102.73502333517811,62.33030506727165,153.66708534096657],"radius":10,"material":"white"},{"kind":"Sphere","center":[86.27607907114417,134.3895990431344,61.930039448866395],"radius":10,"material":"white"},{"kind":"Sphere","center":[100.758207900758,44.91375980685494,88.6766131912653],"radius":10,"material":"white"},{"kind":"Sphere","center":[132.17367419659556,99.50222357086817,12.694859423469454],"radius":10,"material":"white"},{"kind":"Sphere","center":[49.151581208434806,164.716141634621,84.9286795809577],"radius":10,"material":"white"},{"kind":"Sphere","center":[79.5565926558205,137.58919173896172,147.86261065724614],"radius":10,"material":"white"},{"kind":"Sphere","center":[139.80991603894438,46.696915747636766,109.1271033617353],"radius":10,"material":"white"},{"kind":"Sphere","center":[37.75131840611595,87.86278221186123,143.62030800106783],"radius":10,"material":"white"},{"kind":"Sphere","center":[2.3701459043752204,106.34735087486985,146.55077027753413],"radius":10,"material":"white"},{"kind":"Sphere","center":[117.45738097945049,81.42274233538582,39.26742823112109],"radius":10,"material":"white"},{"kind":"Sphere","center":[145.82540437590598,45.47209656827267,113.63881924404308],"radius":10,"material":"white"},{"kind":"Sphere","center":[51.32852548134733,164.42588575158396,63.244645087241004],"radius":10,"material":"white"},{"kind":"Sphere","center":[22.67487496320098,33.140398112628255,16.054765056310586],"radius":10,"material":"white"},{"kind":"Sphere","center":[50.38955456391928,19.65807102585743,87.7666913898185],"radius":10,"material":"white"},{"kind":"Sphere","center":[11.157906899619018,69.20551909531969,88.6194070458868],"radius":10,"material":"white"},{"kind":"Sphere","center":[54.93518984522351,35.280491882399346,45.50660776174568],"radius":10,"material":"white"},{"kind":"Sphere","center":[162.14904964537132,45.50650622246344,80.72983550257462],"radius":10,"material":"white"},{"kind":"Sphere","center":[27.100959002615838,42.68985078750398,111.10221046788412],"radius":10,"material":"white"},{"kind":"Sphere","center":[127.90233980281303,121.39777637872976,109.4787277708976],"radius":10,"material":"white"},{"kind":"Sphere","center":[89.94550071654355,129.6929510526207,73.721235569935],"radius":10,"material":"white"},{"kind":"Sphere","center":[62.264316278091044,0.39433620706377903,127.68491221196214],"radius":10,"material":"white"},{"kind":"Sphere","center":[98.89359034355901,114.60606560894784,7.003143091580746],"radius":10,"material":"white"},{"kind":"Sphere","center":[163.1453061299707,99.9781191545605,83.54106715673288],"radius":10,"material":"white"},{"kind":"Sphere","center":[91.812964796884,127.30502789807448,135.60794698995394],"radius":10,"material":"white"},{"kind":"Sphere","center":[157.860350768999,74.50113533297011,120.4247718756083],"radius":10,"material":"white"},{"kind":"Sphere","center":[153.50713436675485,164.53801520704846,105.08169948992555],"radius":10,"material":"white"},{"kind":"Sphere","center":[6.591070381739163,23.363894929571504,31.406699396420823],"radius":10,"material":"white"},{"kind":"Sphere","center":[35.38547243638761,138.3952027126243,57.58152893303438],"radius":10,"material":"white"},{"kind":"Sphere","center":[90.07784517986694,24.99920815270297,124.82630551115405],"radius":10,"material":"white"},{"kind":"Sphere","center":[62.98405729751397,164.80801303785714,45.14072885801682],"radius":10,"material":"white"},{"kind":"Sphere","center":[93.68071631803863,101.8054161194906,25.530801159755644],"radius":10,"material":"white"},{"kind":"Sphere","center":[87.3431748047033,5.648788075113604,119.90950815065129],"radius":10,"material":"white"},{"kind":"Sphere","center":[138.7546158381825,71.8474139481502,41.133822514170994],"radius":10,"material":"white"},{"kind":"Sphere","center":[108.70386897098203,157.61970394138297,97.36239325186317],"radius":10,"material":"white"},{"kind":"Sphere","center":[85.26417725041307,29.962348277985015,152.18953373728982],"radius":10,"material":"white"},{"kind":"Sphere","center":[3.23335212724446,36.81656230377311,142.99455052664837],"radius":10,"material":"white"},{"kind":"Sphere","center":[155.51552997686227,95.42978155475936,116.90914918869366],"radius":10,"material":"white"},{"kind":"Sphere","center":[44.24736924305351,10.871859799085447,25.477266283639956],"radius":10,"material":"white"},{"kind":"Sphere","center":[91.16607606319334,66.2471594380504,26.024911550628136],"radius":10,"material":"white"},{"kind":"Sphere","center":[55.071822160528946,80.69689394092244,77.33675500294093],"radius":10,"material":"white"},{"kind":"Sphere","center":[15.637220973262625,118.33143404959205,117.92205705577375],"radius":10,"material":"white"},{"kind":"Sphere","center":[81.72886577807091,141.58769102321386,71.8256354616712],"radius":10,"material":"white"},{"kind":"Sphere","center":[73.23717875623801,49.83533121974426,48.06798056472544],"radius":10,"material":"white"},{"kind":"Sphere","center":[19.191211076570568,19.15801266306502,153.04436478442048],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.27726519176572,40.17883811737286,133.52995121655633],"radius":10,"material":"white"},{"kind":"Sphere","center":[81.26126318376855,81.19340801060056,61.81940130051863],"radius":10,"material":"white"},{"kind":"Sphere","center":[92.22093242632948,33.272369689959525,146.17010781217536],"radius":10,"material":"white"},{"kind":"Sphere","center":[148.93817841705155,4.493583682162807,10.229945603524628],"radius":10,"material":"white"},{"kind":"Sphere","center":[13.81068923885534,49.71321659622582,28.46038699364752],"radius":10,"material":"white"},{"kind":"Sphere","center":[131.99272775520674,76.62686606486545,77.35381604938226],"radius":10,"material":"white"},{"kind":"Sphere","center":[128.35292220658445,10.562945957944901,160.62671899021313],"radius":10,"material":"white"},{"kind":"Sphere","center":[135.70337636316287,49.660464071034696,95.94672290330928],"radius":10,"material":"white"},{"kind":"Sphere","center":[35.88568433691168,92.92668558412242,7.147764115376951],"radius":10,"material":"white"},{"kind":"Sphere","center":[58.64350734878653,114.5130079433122,25.030066663924277],"radius":10,"material":"white"},{"kind":"Sphere","center":[21.453219347133672,95.9091252027897,10.55639528339945],"radius":10,"material":"white"},{"kind":"Sphere","center":[71.97315949013439,73.85561509279009,136.6616868593347],"radius":10,"material":"white"},{"kind":"Sphere","center":[86.68571843969953,70.07159417246146,54.54384538244338],"radius":10,"material":"white"},{"kind":"Sphere","center":[72.32102233093735,149.80087603620115,26.284724929855425],"radius":10,"material":"white"},{"kind":"Sphere","center":[121.79210426218224,13.898875540664394,115.29285046353402],"radius":10,"material":"white"},{"kind":"Sphere","center":[132.65627428621474,7.888435620400665,88.58743093061571],"radius":10,"material":"white"},{"kind":"Sphere","center":[132.02763348127726,1.779822828240164,76.28987059299733],"radius":10,"material":"white"},{"kind":"Sphere","center":[115.03261604270122,9.303075121117647,22.54351942921091],"radius":10,"material":"white"},{"kind":"Sphere","center":[36.772665252631384,73.46968631121086,54.32512742446834],"radius":10,"material":"white"},{"kind":"Sphere","center":[115.36823362260421,14.189925598259475,111.0449424795432],"radius":10,"material":"white"},{"kind":"Sphere","center":[128.994102925814,83.12721995376886,145.58732498558697],"radius":10,"material":"white"},{"kind":"Sphere","center":[1.4929054964520783,58.23764560558353,33.662958113309514],"radius":10,"material":"white"},{"kind":"Sphere","center":[82.98674092327767,24.037262070424443,100.82193819522979],"radius":10,"material":"white"},{"kind":"Sphere","center":[125.61513361541299,147.58907499050133,9.751351066842663],"radius":10,"material":"white"},{"kind":"Sphere","center":[30.028133650063012,100.5040490755418,53.90240535600464],"radius":10,"material":"white"},{"kind":"Sphere","center":[37.19402324723349,145.2248722035517,36.002147698738206],"radius":10,"material":"white"},{"kind":"Sphere","center":[63.346747339545146,89.34369668522318,51.373252616365896],"radius":10,"material":"white"},{"kind":"Sphere","center":[62.12076384266056,109.90222644097152,86.65493897771141],"radius":10,"material":"white"},{"kind":"Sphere","center":[86.24223996239982,147.81578944124445,130.53271706675127],"radius":10,"material":"white"},{"kind":"Sphere","center":[161.72604232240948,142.02140119575967,19.172940619267266],"radius":10,"material":"white"},{"kind":"Sphere","center":[27.624165608981652,65.52767793790073,116.12364971743642],"radius":10,"material":"white"},{"kind":"Sphere","center":[80.70025102092383,47.96247419476111,108.63381898547239],"radius":10,"material":"white"},{"kind":"Sphere","center":[36.663199724984096,43.02351961013219,115.32763951084769],"radius":10,"material":"white"},{"kind":"Sphere","center":[0.5456710227810968,64.36187449756714,69.09716132839544],"radius":10,"material":"white"},{"kind":"Sphere","center":[59.837459240749645,69.38115650139217,72.79352379944308],"radius":10,"material":"white"},{"kind":"Sphere","center":[138.32165809253465,55.17091420073932,157.13650318470457],"radius":10,"material":"white"},{"kind":"Sphere","center":[114.37550245618273,157.54532013489705,139.80200312447457],"radius":10,"material":"white"},{"kind":"Sphere","center":[25.245688855938162,3.686974814805637,21.295337953559102],"radius":10,"material":"white"},{"kind":"Sphere","center":[67.65153457600996,24.398981893890145,122.41953196270481],"radius":10,"material":"white"},{"kind":"Sphere","center":[89.80390876393251,16.49766688098541,40.881642330592534],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.24002504894308,100.05724061298106,43.6350487254233],"radius":10,"material":"white"},{"kind":"Sphere","center":[77.50018488242829,104.2428313964793,154.3658679508775],"radius":10,"material":"white"},{"kind":"Sphere","center":[154.39469208872936,163.27565053585224,150.72520992563665],"radius":10,"material":"white"},{"kind":"Sphere","center":[84.75652007435963,108.3486134054178,108.5549813572649],"radius":10,"material":"white"},{"kind":"Sphere","center":[101.73691351790043,30.30445780783079,53.592727857708006],"radius":10,"material":"white"},{"kind":"Sphere","center":[51.985201680023486,104.85406266314527,64.91613771437059],"radius":10,"material":"white"},{"kind":"Sphere","center":[56.14561062692386,27.816733813375443,136.9681160139575],"radius":10,"material":"white"},{"kind":"Sphere","center":[54.66467386752284,77.39351332297186,41.683623181680005],"radius":10,"material":"white"},{"kind":"Sphere","center":[33.17514629259049,22.870775104005734,28.006213105997013],"radius":10,"material":"white"},{"kind":"Sphere","center":[48.56628458371899,112.11068781393722,12.177977258933359],"radius":10,"material":"white"},{"kind":"Sphere","center":[85.3645769691648,34.711879522313524,63.1743462605272],"radius":10,"material":"white"},{"kind":"Sphere","center":[103.86565556312519,128.50019251019265,2.156044266307622],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.40119960702758,93.02371774618821,85.15493124560963],"radius":10,"material":"white"},{"kind":"Sphere","center":[137.5342463867816,9.186701939473817,102.9335420364027],"radius":10,"material":"white"},{"kind":"Sphere","center":[92.98134339914277,4.115948816396058,1.9180662554596906],"radius":10,"material":"white"},{"kind":"Sphere","center":[113.28096335451896,146.4894217961391,117.3121811708611],"radius":10,"material":"white"},{"kind":"Sphere","center":[154.61192432620282,148.15508560284283,78.3887224832716],"radius":10,"material":"white"},{"kind":"Sphere","center":[157.45052660224258,85.81687399970366,91.66726107240439],"radius":10,"material":"white"},{"kind":"Sphere","center":[25.059066968179916,9.442194975602034,30.00475160814006],"radius":10,"material":"white"},{"kind":"Sphere","center":[134.8611999022872,155.53708727260255,15.5197771067815],"radius":10,"material":"white"},{"kind":"Sphere","center":[34.7986069038213,97.39773815864724,149.0423888003126],"radius":10,"material":"white"},{"kind":"Sphere","center":[86.81478666305449,71.75382728423153,159.97772055852622],"radius":10,"material":"white"},{"kind":"Sphere","center":[36.363672553481564,154.00107974765888,162.90915158335858],"radius":10,"material":"white"},{"kind":"Sphere","center":[96.60717636706542,2.908463556894929,27.151247345151862],"radius":10,"material":"white"},{"kind":"Sphere","center":[46.51872826861056,13.139316002473374,72.34305008057245],"radius":10,"material":"white"},{"kind":"Sphere","center":[58.88293452468169,123.73929152349353,118.41617984287568],"radius":10,"material":"white"},{"kind":"Sphere","center":[104.00709319088217,104.73746314952975,150.02310473191497],"radius":10,"material":"white"},{"kind":"Sphere","center":[79.8932989888739,14.024111865198002,72.01901090100131],"radius":10,"material":"white"},{"kind":"Sphere","center":[141.6018050059281,147.61385050193326,102.44118133755171],"radius":10,"material":"white"},{"kind":"Sphere","center":[164.7469813054032,21.58914641180609,73.24099397335803],"radius":10,"material":"white"},{"kind":"Sphere","center":[14.699656982780564,56.458978241908255,121.72264139898668],"radius":10,"material":"white"},{"kind":"Sphere","center":[116.24480203322909,70.87071125422185,144.75195132312393],"radius":10,"material":"white"},{"kind":"Sphere","center":[83.16443777006666,109.27441942297474,55.16470916689201],"radius":10,"material":"white"},{"kind":"Sphere","center":[70.81880677854892,112.2728588415067,61.21594504127007],"radius":10,"material":"white"},{"kind":"Sphere","center":[164.27034009415505,20.400073937792072,89.34532040882154],"radius":10,"material":"white"},{"kind":"Sphere","center":[63.983278139874145,26.59196426124699,39.77914120480366],"radius":10,"material":"white"},{"kind":"Sphere","center":[112.2473109260597,30.34076052901458,79.96404625895072],"radius":10,"material":"white"},{"kind":"Sphere","center":[122.73916161395863,94.80383008368234,84.90252883880486],"radius":10,"material":"white"},{"kind":"Sphere","center":[69.1505729979128,91.5703375708421,9.154651372959655],"radius":10,"material":"white"},{"kind":"Sphere","center":[96.936238926487,124.1343298226568,95.50582475238075],"radius":10,"material":"white"},{"kind":"Sphere","center":[12.012857815355238,151.4342856316701,81.72019204577632],"radius":10,"material":"white"},{"kind":"Sphere","center":[11.545121222380951,60.96625173539138,57.80201193164302],"radius":10,"material":"white"},{"kind":"Sphere","center":[129.9375788186328,34.36575491481892,112.24222820386761],"radius":10,"material":"white"},{"kind":"Sphere","center":[12.72169389253294,96.31839619624415,24.942592581375656],"radius":10,"material":"white"},{"kind":"Sphere","center":[74.47582887968535,63.76762640200107,122.19916897918051],"radius":10,"material":"white"},{"kind":"Sphere","center":[85.66784430145084,155.02679528800624,72.29538771565093],"radius":10,"material":"white"},{"kind":"Sphere","center":[0.9467832659623387,131.31643122269676,29.096941286952],"radius":10,"material":"white"},{"kind":"Sphere","center":[91.3342838380752,49.468401349955386,143.54345327221768],"radius":10,"material":"white"},{"kind":"Sphere","center":[113.81382018087193,11.033889891229219,39.46974229911977],"radius":10,"material":"white"},{"kind":"Sphere","center":[145.83060062121697,140.47187676756934,142.60489748180717],"radius":10,"material":"white"},{"kind":"Sphere","center":[83.75911604131832,96.77873916230233,73.04470611604481],"radius":10,"material":"white"},{"kind":"Sphere","center":[157.51580325203,53.9684937338962,67.89170958155796],"radius":10,"material":"white"},{"kind":"Sphere","center":[4.9780684156568045,145.89733429891206,22.068877077934633],"radius":10,"material":"white"},{"kind":"Sphere","center":[46.42014716966709,18.246923250689253,61.43758978269577],"radius":10,"material":"white"},{"kind":"Sphere","center":[98.77039856876141,26.385595058431704,36.9923434360573],"radius":10,"material":"white"},{"kind":"Sphere","center":[155.7899551937795,0.7418519466698492,106.27950780895755],"radius":10,"material":"white"},{"kind":"Sphere","center":[1.3391146857003988,77.27244433876963,64.22411434589776],"radius":10,"material":"white"},{"kind":"Sphere","center":[45.6513790154953,72.87802510154057,17.996426042793512],"radius":10,"material":"white"},{"kind":"Sphere","center":[10.24687053789937,13.347961362908569,152.00730860565503],"radius":10,"material":"white"},{"kind":"Sphere","center":[149.26528049533755,77.07584080850098,70.17286753374667],"radius":10,"material":"white"},{"kind":"Sphere","center":[115.81410394422953,146.5887711942448,11.497987741309144],"radius":10,"material":"white"},{"kind":"Sphere","center":[145.68430373196716,41.58262557976698,91.8232439747008],"radius":10,"material":"white"},{"kind":"Sphere","center":[37.36446013797194,162.22544123416912,67.94031027508163],"radius":10,"material":"white"},{"kind":"Sphere","center":[33.144434001830625,128.62479109383102,108.30830275025113],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.29792790735812,89.56046609742353,0.45843585790983354],"radius":10,"material":"white"},{"kind":"Sphere","center":[59.27452855085953,13.28028458018054,64.58955621075243],"radius":10,"material":"white"},{"kind":"Sphere","center":[33.976408707865495,67.3002942427762,7.19124694976657],"radius":10,"material":"white"},{"kind":"Sphere","center":[63.83640649145116,95.67797692140894,160.6165473716119],"radius":10,"material":"white"},{"kind":"Sphere","center":[21.374316722148873,92.34622076873454,54.23791007021012],"radius":10,"material":"white"},{"kind":"Sphere","center":[2.235124621219394,133.08483764186803,11.041607488598919],"radius":10,"material":"white"},{"kind":"Sphere","center":[154.91995815135348,162.78251818443294,87.8294307541755],"radius":10,"material":"white"},{"kind":"Sphere","center":[131.4324621185931,51.532996650384554,30.796679348629795],"radius":10,"material":"white"},{"kind":"Sphere","center":[51.665788411076726,98.52305520061364,148.87818571009848],"radius":10,"material":"white"},{"kind":"Sphere","center":[132.47730681913166,35.91047150313378,83.4892493170455],"radius":10,"material":"white"},{"kind":"Sphere","center":[134.68998566181335,103.86598943571362,14.328141446723034],"radius":10,"material":"white"},{"kind":"Sphere","center":[22.61297171288719,59.260612900221815,0.5645641510289101],"radius":10,"material":"white"},{"kind":"Sphere","center":[91.3473133279673,7.441761719606527,17.366281870676605],"radius":10,"material":"white"},{"kind":"Sphere","center":[60.60702934324823,61.96862980833258,22.14823047275821],"radius":10,"material":"white"},{"kind":"Sphere","center":[47.496257733776496,108.99066634814784,53.62110742998267],"radius":10,"material":"white"},{"kind":"Sphere","center":[59.78077799996532,67.42820878734484,69.97458603784412],"radius":10,"material":"white"},{"kind":"Sphere","center":[101.8930106548552,21.76915361421682,44.36683378113011],"radius":10,"material":"white"},{"kind":"Sphere","center":[95.03098652397026,4.246786216993118,123.05498036693933],"radius":10,"material":"white"},{"kind":"Sphere","center":[95.220762277007,99.94427352970234,87.93576395409187],"radius":10,"material":"white"},{"kind":"Sphere","center":[77.30679867423648,26.768381951530447,76.13079202668658],"radius":10,"material":"white"},{"kind":"Sphere","center":[78.54127343745796,95.66980663944224,132.52249607196168],"radius":10,"material":"white"},{"kind":"Sphere","center":[154.31709739013814,55.233276708571864,29.969160652022914],"radius":10,"material":"white"},{"kind":"Sphere","center":[16.0188411403979,91.88761390682224,140.6342738018236],"radius":10,"material":"white"},{"kind":"Sphere","center":[43.99081300281635,97.73301140382861,7.461889923133295],"radius":10,"material":"white"},{"kind":"Sphere","center":[139.41979755705648,122.63614244953627,19.626072364933],"radius":10,"material":"white"},{"kind":"Sphere","center":[47.65742727212703,37.5610662401066,86.19608146906064],"radius":10,"material":"white"},{"kind":"Sphere","center":[112.2284348648187,16.254237008042207,44.302258133195316],"radius":10,"material":"white"},{"kind":"Sphere","center":[3.0861762201995857,82.4707366147526,34.933981259605666],"radius":10,"material":"white"},{"kind":"Sphere","center":[148.0045927903726,126.27360232074395,95.62303421331556],"radius":10,"material":"white"},{"kind":"Sphere","center":[28.286882655139046,49.319208475563364,134.57323353113097],"radius":10,"material":"white"},{"kind":"Sphere","center":[19.131817067838902,71.54075866337061,89.43720768181336],"radius":10,"material":"white"},{"kind":"Sphere","center":[85.81487447993692,21.428326987572806,155.64828455962933],"radius":10,"material":"white"},{"kind":"Sphere","center":[63.52906408972617,145.51387471925455,144.0062033464162],"radius":10,"material":"white"},{"kind":"Sphere","center":[40.44162154893535,7.30850829566359,20.353268669022505],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.340060725110604,155.98365823259223,95.54627408426362],"radius":10,"material":"white"},{"kind":"Sphere","center":[83.76758150946685,104.71629898535998,39.96876824438571],"radius":10,"material":"white"},{"kind":"Sphere","center":[99.68509428480375,43.95780381696261,152.08131068210497],"radius":10,"material":"white"},{"kind":"Sphere","center":[142.85982533948123,128.74745675324144,17.792390737483714],"radius":10,"material":"white"},{"kind":"Sphere","center":[104.7933008344872,20.116771714534355,148.60218629461414],"radius":10,"material":"white"},{"kind":"Sphere","center":[20.724859269106435,155.36222825754345,3.3727707505361995],"radius":10,"material":"white"},{"kind":"Sphere","center":[52.05462471437381,32.392443639375614,68.07080533099558],"radius":10,"material":"white"},{"kind":"Sphere","center":[14.21269895471524,121.37267663986324,48.18317350215721],"radius":10,"material":"white"},{"kind":"Sphere","center":[133.8605572966515,11.280567168217285,58.35996633690581],"radius":10,"material":"white"},{"kind":"Sphere","center":[121.52022177270891,22.796273107152597,139.89870398391122],"radius":10,"material":"white"},{"kind":"Sphere","center":[98.35081859434656,141.97485706251754,72.41887675104802],"radius":10,"material":"white"},{"kind":"Sphere","center":[149.29419861022396,141.77843081850418,64.03387620814235],"radius":10,"material":"white"},{"kind":"Sphere","center":[63.37546779135866,134.02406196634698,137.5657710860306],"radius":10,"material":"white"},{"kind":"Sphere","center":[100.69904885045695,36.4580188184255,0.48223087203623893],"radius":10,"material":"white"},{"kind":"Sphere","center":[46.00450957479542,42.62035713983402,119.02275710179916],"radius":10,"material":"white"},{"kind":"Sphere","center":[79.30524509787723,87.89695191153382,140.93407417113445],"radius":10,"material":"white"},{"kind":"Sphere","center":[164.01940837061898,1.8791317507058047,148.87356186219054],"radius":10,"material":"white"},{"kind":"Sphere","center":[115.19678900935143,34.77408921391523,50.05325266884364],"radius":10,"material":"white"},{"kind":"Sphere","center":[77.50236514244862,11.095133854056913,123.45074453997289],"radius":10,"material":"white"},{"kind":"Sphere","center":[65.93016499556964,84.4468973288575,67.08973838116206],"radius":10,"material":"white"},{"kind":"Sphere","center":[108.00721994753086,73.43578251983541,46.21444391955591],"radius":10,"material":"white"},{"kind":"Sphere","center":[160.16919831401438,110.01586840903525,153.48558798073154],"radius":10,"material":"white"},{"kind":"Sphere","center":[55.231793647465146,40.38836668368122,53.85933535554542],"radius":10,"material":"white"},{"kind":"Sphere","center":[33.355620648241604,159.66978465504653,70.29398610837876],"radius":10,"material":"white"},{"kind":"Sphere","center":[109.35013567759115,132.86366245504945,65.07354167084222],"radius":10,"material":"white"},{"kind":"Sphere","center":[113.72998799861467,86.35962099151087,66.25482126064465],"radius":10,"material":"white"},{"kind":"Sphere","center":[34.99604911744737,134.2919550008025,117.1790056280035],"radius":10,"material":"white"},{"kind":"Sphere","center":[5.243787850922267,156.39938486910296,138.16452549735897],"radius":10,"material":"white"},{"kind":"Sphere","center":[41.77083725753399,8.148686217927972,44.64435230699567],"radius":10,"material":"white"},{"kind":"Sphere","center":[162.89322994839964,106.14744232781574,44.45436580906535],"radius":10,"material":"white"},{"kind":"Sphere","center":[98.3396676656456,26.625681877499517,95.619528421968],"radius":10,"material":"white"},{"kind":"Sphere","center":[60.32106756969992,139.50685100982483,90.66504013561861],"radius":10,"material":"white"},{"kind":"Sphere","center":[22.303587344391026,32.69256542822471,118.93738969729752],"radius":10,"material":"white"},{"kind":"Sphere","center":[6.0056101890131455,11.778069789399018,42.581044123545],"radius":10,"material":"white"},{"kind":"Sphere","center":[145.70872603722336,123.02944837824306,61.867545481584045],"radius":10,"material":"white"},{"kind":"Sphere","center":[32.40191295389369,87.18661862130612,27.09341675099846],"radius":10,"material":"white"},{"kind":"Sphere","center":[12.981768190949381,22.755074970814043,80.3402321164056],"radius":10,"material":"white"},{"kind":"Sphere","center":[15.660966178832638,72.2845707424002,163.53982407763738],"radius":10,"material":"white"},{"kind":"Sphere","center":[12.540283493446573,111.80180652908987,53.366037324585],"radius":10,"material":"white"},{"kind":"Sphere","center":[77.35983043733812,17.256596203842165,116.09284442554417],"radius":10,"material":"white"},{"kind":"Sphere","center":[163.03130244727708,137.93750851621473,46.90761426691452],"radius":10,"material":"white"},{"kind":"Sphere","center":[159.66067409109235,114.46570630173036,91.21896878041221],"radius":10,"material":"white"},{"kind":"Sphere","center":[130.36761686609273,63.75163363862135,94.74283308912968],"radius":10,"material":"white"},{"kind":"Sphere","center":[115.8524124154844,108.411826919155,33.08333114705154],"radius":10,"material":"white"},{"kind":"Sphere","center":[9.810367897824143,1.9637716847799136,163.76361144498745],"radius":10,"material":"white"},{"kind":"Sphere","center":[49.333090121680854,53.88165355173509,15.449848264454152],"radius":10,"material":"white"},{"kind":"Sphere","center":[20.27451559388621,21.50043510999114,16.012812270555006],"radius":10,"material":"white"},{"kind":"Sphere","center":[65.3122383161788,58.68006108163095,52.5208278453206],"radius":10,"material":"white"},{"kind":"Sphere","center":[141.61880317066687,81.71547976736063,156.78445584231298],"radius":10,"material":"white"},{"kind":"Sphere","center":[21.055264662488785,118.41441090837189,13.721948148192993],"radius":10,"material":"white"},{"kind":"Sphere","center":[10.714067221063807,17.151834984573593,35.76183135964883],"radius":10,"material":"white"},{"kind":"Sphere","center":[103.6846680685805,101.17411760318737,19.93359892640699],"radius":10,"material":"white"},{"kind":"Sphere","center":[42.0040409047959,2.8979070849257162,122.4424475764324],"radius":10,"material":"white"},{"kind":"Sphere","center":[9.625260616949804,120.0486077091391,24.388795943279224],"radius":10,"material":"white"},{"kind":"Sphere","center":[138.831187130697,66.95885792326379,78.19972456585768],"radius":10,"material":"white"},{"kind":"Sphere","center":[80.38763739880652,31.864784825634295,57.03269708021883],"radius":10,"material":"white"},{"kind":"Sphere","center":[120.6193149629893,109.32102658636536,164.86541963140712],"radius":10,"material":"white"},{"kind":"Sphere","center":[32.70455957008695,116.41998094693318,80.62618157916049],"radius":10,"material":"white"},{"kind":"Sphere","center":[0.9940939022646345,58.26947928946561,5.440205799763461],"radius":10,"material":"white"},{"kind":"Sphere","center":[39.047099498010816,96.86884222681681,118.04882756717724],"radius":10,"material":"white"},{"kind":"Sphere","center":[105.36446497966128,53.25430161992044,48.044284081492314],"radius":10,"material":"white"},{"kind":"Sphere","center":[145.2724415985297,53.14703773031162,25.791411394644033],"radius":10,"material":"white"},{"kind":"Sphere","center":[153.61634796751096,36.685252091203004,59.83533909461274],"radius":10,"material":"white"},{"kind":"Sphere","center":[159.2750561034048,54.298374649619774,1.1613410726129947],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.20323465047463,79.24337767119445,116.5860534833411],"radius":10,"material":"white"},{"kind":"Sphere","center":[147.59793493224987,5.362216569781603,56.16121174964349],"radius":10,"material":"white"},{"kind":"Sphere","center":[137.61408085275409,160.70508836482261,123.64989337655872],"radius":10,"material":"white"},{"kind":"Sphere","center":[57.95191410086426,150.01246623784598,141.32119517026192],"radius":10,"material":"white"},{"kind":"Sphere","center":[117.83040533491108,72.81688796979057,102.721073348792],"radius":10,"material":"white"},{"kind":"Sphere","center":[2.2939774052092554,74.24290592771484,154.57927080971476],"radius":10,"material":"white"},{"kind":"Sphere","center":[24.49788635557904,139.75706708007712,12.653487688463578],"radius":10,"material":"white"},{"kind":"Sphere","center":[82.29737836951145,62.61073988501368,109.21348197204328],"radius":10,"material":"white"},{"kind":"Sphere","center":[42.67561902849545,78.04409495692212,136.90154006760133],"radius":10,"material":"white"},{"kind":"Sphere","center":[34.940576562155925,26.07509631530357,77.07882446676764],"radius":10,"material":"white"},{"kind":"Sphere","center":[20.313006819194165,86.06362618570458,28.507992320797552],"radius":10,"material":"white"},{"kind":"Sphere","center":[109.76730317388545,96.63326890839205,44.92109163729144],"radius":10,"material":"white"},{"kind":"Sphere","center":[65.89100152957086,58.53769936780248,119.07365742916045],"radius":10,"material":"white"},{"kind":"Sphere","center":[29.248119407794366,133.0941366026889,139.39698019644996],"radius":10,"material":"white"},{"kind":"Sphere","center":[32.15904005670849,48.855729066694224,107.95036645608312],"radius":10,"material":"white"},{"kind":"Sphere","center":[71.1190807071018,136.81602048526426,122.38224031010913],"radius":10,"material":"white"},{"kind":"Sphere","center":[157.6554085436345,131.51434195147218,109.72288066612352],"radius":10,"material":"white"},{"kind":"Sphere","center":[42.251477313802376,99.88726592317279,157.84161158372956],"radius":10,"material":"white"},{"kind":"Sphere","center":[106.94009857875469,69.85172803379349,86.84541893666452],"radius":10,"material":"white"},{"kind":"Sphere","center":[31.927366419571936,77.11209704058221,73.77135381186275],"radius":10,"material":"white"},{"kind":"Sphere","center":[15.022646425344426,92.18688916832744,84.81152629421088],"radius":10,"material":"white"},{"kind":"Sphere","center":[15.377603481947968,37.63581541227575,34.53391856897968],"radius":10,"material":"white"},{"kind":"Sphere","center":[55.623734335828246,66.81885872692311,135.22160345110711],"radius":10,"material":"white"},{"kind":"Sphere","center":[60.36341451981933,105.34632329443637,134.23968672997137],"radius":10,"material":"white"},{"kind":"Sphere","center":[81.93743262127632,15.937744796945541,50.84428986651929],"radius":10,"material":"white"},{"kind":"Sphere","center":[157.9328084302514,76.84933269165104,163.34534968041507],"radius":10,"material":"white"},{"kind":"Sphere","center":[75.80543516443755,40.68402332622565,103.10129494439971],"radius":10,"material":"white"},{"kind":"Sphere","center":[46.770685295654786,39.538807985378135,8.777302213024395],"radius":10,"material":"white"},{"kind":"Sphere","center":[126.60664471279928,97.2024519908525,130.846484187301],"radius":10,"material":"white"},{"kind":"Sphere","center":[134.26327779383968,127.06187467147394,125.95253204642619],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.40038841401245,161.00352432616094,113.16696030957337],"radius":10,"material":"white"},{"kind":"Sphere","center":[158.00484287169004,103.94600598807715,125.58614279631557],"radius":10,"material":"white"},{"kind":"Sphere","center":[66.87965724604098,144.23854221872742,142.00939234379297],"radius":10,"material":"white"},{"kind":"Sphere","center":[56.102431359256514,146.00877919429266,15.387822347477984],"radius":10,"material":"white"},{"kind":"Sphere","center":[94.45737265775591,151.67230676414337,122.30611400633913],"radius":10,"material":"white"},{"kind":"Sphere","center":[77.38895415947147,139.182402096807,53.98722201708929],"radius":10,"material":"white"},{"kind":"Sphere","center":[144.5183592413431,141.17007406562118,131.04987382421393],"radius":10,"material":"white"},{"kind":"Sphere","center":[36.41649083088426,93.81742398688262,134.89073425821113],"radius":10,"material":"white"},{"kind":"Sphere","center":[46.16144355968584,142.58492099556503,71.47776334651617],"radius":10,"material":"white"},{"kind":"Sphere","center":[84.65901032410237,78.63740716017443,154.92886553059375],"radius":10,"material":"white"},{"kind":"Sphere","center":[72.05836748692242,109.66335351740655,23.716890825105697],"radius":10,"material":"white"},{"kind":"Sphere","center":[164.93065391352326,145.53973590889342,17.23452364923516],"radius":10,"material":"white"},{"kind":"Sphere","center":[50.89929664261048,46.66229046920316,36.48944675458425],"radius":10,"material":"white"},{"kind":"Sphere","center":[86.79853961063084,42.92895172326693,85.193865456662],"radius":10,"material":"white"},{"kind":"Sphere","center":[134.9803609106114,80.09083943745436,99.24469698096017],"radius":10,"material":"white"},{"kind":"Sphere","center":[78.0713970579168,93.66701223571765,96.96848526150733],"radius":10,"material":"white"},{"kind":"Sphere","center":[111.47329398913733,129.17965550131203,68.64631642092635],"radius":10,"material":"white"},{"kind":"Sphere","center":[62.97798406057435,117.09077630695288,20.394410050619395],"radius":10,"material":"white"},{"kind":"Sphere","center":[95.96962220097792,119.7899761935101,92.48639161312627],"radius":10,"material":"white"},{"kind":"Sphere","center":[62.09304345174104,56.99492432156852,28.530717874877705],"radius":10,"material":"white"},{"kind":"Sphere","center":[79.49715196933721,16.488660646908578,113.52630447368406],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.40675437993757,74.06949196617437,74.56148134276214],"radius":10,"material":"white"},{"kind":"Sphere","center":[80.3299531664608,80.12818847374362,25.595415271822464],"radius":10,"material":"white"},{"kind":"Sphere","center":[75.07148989345815,56.50777492859155,56.77969572479101],"radius":10,"material":"white"},{"kind":"Sphere","center":[152.1948369367313,15.796674052686843,7.791888153604213],"radius":10,"material":"white"},{"kind":"Sphere","center":[91.18106176968567,36.64578970624217,56.4396370399608],"radius":10,"material":"white"},{"kind":"Sphere","center":[15.303495878957063,115.99847223293668,67.54165075312501],"radius":10,"material":"white"},{"kind":"Sphere","center":[32.96924288083592,10.519625999764312,113.95664932917813],"radius":10,"material":"white"},{"kind":"Sphere","center":[43.644684722053384,23.13585155674488,94.51706070891105],"radius":10,"material":"white"},{"kind":"Sphere","center":[4.402724304621964,152.4762997518046,81.2638402692433],"radius":10,"material":"white"},{"kind":"Sphere","center":[87.17737722774983,69.43232115489947,101.50136746906797],"radius":10,"material":"white"},{"kind":"Sphere","center":[159.24355401714047,143.05479506667,75.26559241752972],"radius":10,"material":"white"},{"kind":"Sphere","center":[143.79985227261295,36.16187694611958,6.022160484527127],"radius":10,"material":"white"},{"kind":"Sphere","center":[119.68783894740335,55.892057234073405,54.324588861398524],"radius":10,"material":"white"},{"kind":"Sphere","center":[43.785171739518184,44.96597446246073,61.398315744926165],"radius":10,"material":"white"},{"kind":"Sphere","center":[121.68329562898376,83.83442794230947,6.315674841869653],"radius":10,"material":"white"},{"kind":"Sphere","center":[31.853367130586754,14.879100411248846,64.68340130249084],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.41985963572776,107.76280063854921,0.5414314680430576],"radius":10,"material":"white"},{"kind":"Sphere","center":[75.88410980424696,59.74988722466014,0.6286611612209891],"radius":10,"material":"white"},{"kind":"Sphere","center":[95.13348149668356,35.101965833135544,26.75323075178288],"radius":10,"material":"white"},{"kind":"Sphere","center":[81.36668837399822,140.76045887850117,112.66269824766198],"radius":10,"material":"white"},{"kind":"Sphere","center":[104.02509424720606,157.0146611400587,6.178462974343675],"radius":10,"material":"white"},{"kind":"Sphere","center":[125.60761471842409,6.180595231847113,96.52475786708666],"radius":10,"material":"white"},{"kind":"Sphere","center":[86.30947906870315,154.43361161625938,44.36132280772632],"radius":10,"material":"white"},{"kind":"Sphere","center":[56.75014159611661,19.86870662207714,32.80932067733866],"radius":10,"material":"white"},{"kind":"Sphere","center":[59.05691588790255,49.045373092748434,27.688019217539303],"radius":10,"material":"white"},{"kind":"Sphere","center":[34.30359292436062,107.08106873508919,110.45279041155702],"radius":10,"material":"white"},{"kind":"Sphere","center":[30.741436772051564,59.924113663855714,121.27547069370709],"radius":10,"material":"white"},{"kind":"Sphere","center":[107.36314061715798,2.8404599267727573,90.64962206957082],"radius":10,"material":"white"},{"kind":"Sphere","center":[14.040852332369912,36.55715695672628,87.21255776035812],"radius":10,"material":"white"},{"kind":"Sphere","center":[33.05534907753173,94.35892161550815,69.0404886388101],"radius":10,"material":"white"},{"kind":"Sphere","center":[5.960240944208891,38.46552881292268,91.28611960754286],"radius":10,"material":"white"},{"kind":"Sphere","center":[76.30771148453279,121.49123504561744,100.6762874763645],"radius":10,"material":"white"},{"kind":"Sphere","center":[84.90449496264387,94.14437428296435,127.23211373768822],"radius":10,"material":"white"},{"kind":"Sphere","center":[3.564794476062282,136.26773149932973,13.205431151997482],"radius":10,"material":"white"},{"kind":"Sphere","center":[48.5076946552071,132.49298090247848,156.41789675723354],"radius":10,"material":"white"},{"kind":"Sphere","center":[107.38199043619518,146.9486347987193,81.19752722890321],"radius":10,"material":"white"},{"kind":"Sphere","center":[40.738742219324536,18.36843979760683,145.7761740274144],"radius":10,"material":"white"},{"kind":"Sphere","center":[142.455885741279,22.440814890473295,59.85115529064145],"radius":10,"material":"white"},{"kind":"Sphere","center":[158.86372601478394,14.12913182970379,68.98444509938155],"radius":10,"material":"white"},{"kind":"Sphere","center":[79.45907099676859,136.72116715070302,8.43269521979907],"radius":10,"material":"white"},{"kind":"Sphere","center":[93.92405055268732,92.99503425487859,10.763523712795704],"radius":10,"material":"white"},{"kind":"Sphere","center":[55.14998347217901,153.5945755829636,106.97313003892835],"radius":10,"material":"white"},{"kind":"Sphere","center":[64.84323446896464,21.390358754262095,58.22903818510331],"radius":10,"material":"white"},{"kind":"Sphere","center":[34.977804992454004,162.6615790133661,36.14440177519096],"radius":10,"material":"white"},{"kind":"Sphere","center":[15.583266382522677,44.13900966875288,51.2717661615219],"radius":10,"material":"white"},{"kind":"Sphere","center":[30.782801906792667,6.890009517825694,12.423733465356978],"radius":10,"material":"white"},{"kind":"Sphere","center":[77.82975228529247,44.282160451844355,24.53916037314203],"radius":10,"material":"white"},{"kind":"Sphere","center":[108.14934161280617,157.23260862663454,95.91078095124557],"radius":10,"material":"white"},{"kind":"Sphere","center":[153.091190387365,127.50101406108767,19.201638050004245],"radius":10,"material":"white"},{"kind":"Sphere","center":[79.78486962183372,77.04015210751912,144.80283054008072],"radius":10,"material":"white"},{"kind":"Sphere","center":[99.69294294195724,154.74583077324658,151.26156896969144],"radius":10,"material":"white"},{"kind":"Sphere","center":[92.41776366082935,35.532309228056505,36.210105153658695],"radius":10,"material":"white"},{"kind":"Sphere","center":[92.5013181985399,19.717854151868387,91.66429341699799],"radius":10,"material":"white"},{"kind":"Sphere","center":[150.12956709138666,56.91312913202231,154.1333182526475],"radius":10,"material":"white"},{"kind":"Sphere","center":[25.138224731641735,65.76251950941383,75.46877546261568],"radius":10,"material":"white"},{"kind":"Sphere","center":[40.699217141448614,156.26219794306436,122.65390445982321],"radius":10,"material":"white"},{"kind":"Sphere","center":[111.5640533119983,113.55525438243632,15.24440012545995],"radius":10,"material":"white"},{"kind":"Sphere","center":[8.982026556986673,129.40475114650397,130.8659463053672],"radius":10,"material":"white"},{"kind":"Sphere","center":[98.95731323201916,56.51448229951328,120.04647195639986],"radius":10,"material":"white"},{"kind":"Sphere","center":[133.0701157984213,128.57538289470276,123.8405543158359],"radius":10,"material":"white"},{"kind":"Sphere","center":[56.38087292431375,103.92742276888053,8.295329990390393],"radius":10,"material":"white"},{"kind":"Sphere","center":[158.94529211069556,163.37201233687438,88.30216817380106],"radius":10,"material":"white"},{"kind":"Sphere","center":[100.8879626002842,139.06894209492492,129.28879320256934],"radius":10,"material":"white"},{"kind":"Sphere","center":[22.798192942592244,114.04134199043696,83.62999640519128],"radius":10,"material":"white"},{"kind":"Sphere","center":[34.88100583980501,126.8789791025344,65.82601081953479],"radius":10,"material":"white"},{"kind":"Sphere","center":[77.77533616982143,136.51896154108968,75.96750957414214],"radius":10,"material":"white"},{"kind":"Sphere","center":[73.5169210013503,21.159483218173335,160.85768824023577],"radius":10,"material":"white"},{"kind":"Sphere","center":[3.5874643727379842,132.69320930850944,76.44470966468019],"radius":10,"material":"white"},{"kind":"Sphere","center":[121.42787451628745,57.89999542856034,135.93152292578554],"radius":10,"material":"white"},{"kind":"Sphere","center":[105.05517446319959,100.41573667485099,88.04172748515687],"radius":10,"material":"white"},{"kind":"Sphere","center":[3.0166984153576615,66.88018644816681,102.21060260460635],"radius":10,"material":"white"},{"kind":"Sphere","center":[125.99797636181324,134.0325151887483,50.285382019598245],"radius":10,"material":"white"},{"kind":"Sphere","center":[72.64247483064486,84.41258148579544,134.06712497259352],"radius":10,"material":"white"},{"kind":"Sphere","center":[26.905255253197726,99.87174558639107,162.95008674995083],"radius":10,"material":"white"},{"kind":"Sphere","center":[23.106159580409944,119.21169603173983,122.61235641109222],"radius":10,"material":"white"},{"kind":"Sphere","center":[6.5810529435518035,121.24776067923194,126.72671722581526],"radius":10,"material":"white"},{"kind":"Sphere","center":[76.02028652026951,127.14601276727178,53.280080644706885],"radius":10,"material":"white"},{"kind":"Sphere","center":[132.84508084948945,23.024855034802997,91.9117807110959],"radius":10,"material":"white"},{"kind":"Sphere","center":[52.45984346879876,8.716884333341122,95.51843338391282],"radius":10,"material":"white"},{"kind":"Sphere","center":[145.89101909137176,101.77092812356167,37.68905281664155],"radius":10,"material":"white"},{"kind":"Sphere","center":[89.47318723219094,163.1128126499427,86.64726087653555],"radius":10,"material":"white"},{"kind":"Sphere","center":[55.81753487425636,29.167064848371396,19.524163062670237],"radius":10,"material":"white"},{"kind":"Sphere","center":[49.08517145411591,137.56406093147828,118.92223379200342],"radius":10,"material":"white"},{"kind":"Sphere","center":[2.557323094241549,64.2407893870064,138.1305077498898],"radius":10,"material":"white"},{"kind":"Sphere","center":[101.57370639718413,80.26481755384437,69.62215136835097],"radius":10,"material":"white"},{"kind":"Sphere","center":[2.0714393519443073,153.18495442555124,40.66413939672934],"radius":10,"material":"white"},{"kind":"Sphere","center":[23.528182948633013,82.38356344889405,29.95427217098137],"radius":10,"material":"white"},{"kind":"Sphere","center":[136.51286173408,141.03877489508704,121.08174326645796],"radius":10,"material":"white"},{"kind":"Sphere","center":[155.15186952552008,118.886746366254,18.769579567486193],"radius":10,"material":"white"},{"kind":"Sphere","center":[80.11229276006507,9.49398066322514,79.18163243034087],"radius":10,"material":"white"},{"kind":"Sphere","center":[68.76622317615421,140.77521564990602,148.08019578922554],"radius":10,"material":"white"},{"kind":"Sphere","center":[5.265852938749536,21.92342147831438,24.09639833647606],"radius":10,"material":"white"},{"kind":"Sphere","center":[62.53818583478445,111.21472300493487,84.32345046469075],"radius":10,"material":"white"},{"kind":"Sphere","center":[46.46892498818153,30.43562987005792,15.250230137486136],"radius":10,"material":"white"},{"kind":"Sphere","center":[76.94938201063098,108.65423907567843,0.09698799349278087],"radius":10,"material":"white"},{"kind":"Sphere","center":[81.21998231128482,28.855132272242255,143.98087278511022],"radius":10,"material":"white"},{"kind":"Sphere","center":[121.07111354929627,6.962078953453141,54.04772354989614],"radius":10,"material":"white"},{"kind":"Sphere","center":[125.84521048963192,96.80551401337576,112.63539579174514],"radius":10,"material":"white"},{"kind":"Sphere","center":[22.188749570198375,101.4593459911845,161.73584640723064],"radius":10,"material":"white"},{"kind":"Sphere","center":[45.899034270818895,153.4310166876248,48.24308715844096],"radius":10,"material":"white"},{"kind":"Sphere","center":[117.9532328583634,83.73328924739023,79.98677054686823],"radius":10,"material":"white"},{"kind":"Sphere","center":[147.5857777764054,47.77687857647437,70.47927510897489],"radius":10,"material":"white"},{"kind":"Sphere","center":[68.87037694939359,13.186318620061176,93.50901657524304],"radius":10,"material":"white"},{"kind":"Sphere","center":[85.69873822032386,115.20110283782616,123.61466450992144],"radius":10,"material":"white"},{"kind":"Sphere","center":[41.208422495411256,66.66767645770196,99.45706016570009],"radius":10,"material":"white"},{"kind":"Sphere","center":[70.34423980957082,106.77826802186156,99.49648897540479],"radius":10,"material":"white"},{"kind":"Sphere","center":[144.8225777032341,9.66363070125033,89.84299841011817],"radius":10,"material":"white"},{"kind":"Sphere","center":[93.39062855902984,34.03997904037227,87.64320399954198],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.23583483048887,0.30294684783589987,161.81525999660604],"radius":10,"material":"white"},{"kind":"Sphere","center":[140.1937517558762,132.92980880239378,147.29153833034323],"radius":10,"material":"white"},{"kind":"Sphere","center":[50.04748183043466,11.648174006430517,27.234562162046867],"radius":10,"material":"white"},{"kind":"Sphere","center":[139.49890071491345,84.83922758011182,37.739271246245075],"radius":10,"material":"white"},{"kind":"Sphere","center":[147.21044899581898,82.6957978014933,117.74683543262944],"radius":10,"material":"white"},{"kind":"Sphere","center":[56.945233508472825,83.81814244363268,17.62456529385558],"radius":10,"material":"white"},{"kind":"Sphere","center":[148.09162679955827,103.09333953857033,23.18578337230483],"radius":10,"material":"white"},{"kind":"Sphere","center":[62.739984712260146,66.00163146389147,41.40580782835748],"radius":10,"material":"white"},{"kind":"Sphere","center":[137.55049726379528,129.47751944065965,55.34800548765518],"radius":10,"material":"white"},{"kind":"Sphere","center":[17.411382380131737,91.68840100134878,57.57635731008277],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.78595668527464,107.92134178702143,154.07706664614406],"radius":10,"material":"white"},{"kind":"Sphere","center":[109.26596351305831,164.0547160624746,25.027659938764973],"radius":10,"material":"white"},{"kind":"Sphere","center":[162.1716419510956,136.85280094999482,161.4290717556484],"radius":10,"material":"white"},{"kind":"Sphere","center":[37.964619206363885,110.90851782977992,148.39062246162788],"radius":10,"material":"white"},{"kind":"Sphere","center":[15.214410471177354,91.54744413893967,69.0163572212687],"radius":10,"material":"white"},{"kind":"Sphere","center":[27.225383341165998,43.72704350099599,123.93030397457925],"radius":10,"material":"white"},{"kind":"Sphere","center":[114.52296702689401,32.49997419312466,102.98039174801322],"radius":10,"material":"white"},{"kind":"Sphere","center":[18.22417016944066,147.07412026305286,109.64004732700275],"radius":10,"material":"white"},{"kind":"Sphere","center":[163.0649054363722,80.8796075700566,151.49209423860137],"radius":10,"material":"white"},{"kind":"Sphere","center":[160.00377012292674,123.62141388512863,5.337530540158247],"radius":10,"material":"white"},{"kind":"Sphere","center":[77.83233745050823,136.69059826024466,159.79668781822133],"radius":10,"material":"white"},{"kind":"Sphere","center":[50.79266497982318,99.5575795754807,88.47722418120631],"radius":10,"material":"white"},{"kind":"Sphere","center":[86.56397299233228,154.67117190165453,159.10843643587515],"radius":10,"material":"white"},{"kind":"Sphere","center":[34.213051020988026,108.45562867127097,33.07134297225678],"radius":10,"material":"white"},{"kind":"Sphere","center":[143.01072665487905,60.834790344090514,35.14345010231087],"radius":10,"material":"white"},{"kind":"Sphere","center":[44.41931586223757,62.26648416801596,46.19130901816503],"radius":10,"material":"white"},{"kind":"Sphere","center":[103.94959648430203,35.090049440297236,119.71212387056174],"radius":10,"material":"white"},{"kind":"Sphere","center":[63.95214053679542,19.353635508578268,32.74287420870857],"radius":10,"material":"white"},{"kind":"Sphere","center":[134.4453081641686,32.8958737779315,37.248820750471026],"radius":10,"material":"white"},{"kind":"Sphere","center":[7.362443934196196,45.29296342585699,34.14893430680925],"radius":10,"material":"white"},{"kind":"Sphere","center":[39.88275720549424,6.239982301694194,89.70539729070394],"radius":10,"material":"white"},{"kind":"Sphere","center":[144.3608057793869,145.693128449777,132.10860614151005],"radius":10,"material":"white"},{"kind":"Sphere","center":[66.88397016485727,17.311425169801126,94.09296544556003],"radius":10,"material":"white"},{"kind":"Sphere","center":[76.73434824103306,130.22853779723883,88.49364503705787],"radius":10,"material":"white"},{"kind":"Sphere","center":[73.2570937650334,123.09894385111619,161.7897199058581],"radius":10,"material":"white"},{"kind":"Sphere","center":[137.61087514366292,40.00381835541635,51.10151782618653],"radius":10,"material":"white"},{"kind":"Sphere","center":[135.77470608559995,35.849644528845154,38.82952331165694],"radius":10,"material":"white"},{"kind":"Sphere","center":[39.80177581903964,154.89625165068296,76.99602669072324],"radius":10,"material":"white"},{"kind":"Sphere","center":[41.684102250578285,87.03840422258816,21.181232833278855],"radius":10,"material":"white"},{"kind":"Sphere","center":[6.057265711014923,30.955853652085192,30.700837929778437],"radius":10,"material":"white"},{"kind":"Sphere","center":[129.02412640161975,137.09121859408341,34.33791303354588],"radius":10,"material":"white"},{"kind":"Sphere","center":[92.20344144438539,134.96518243331153,84.76592755721089],"radius":10,"material":"white"},{"kind":"Sphere","center":[119.82232707399493,57.8498403867386,148.76062238691446],"radius":10,"material":"white"},{"kind":"Sphere","center":[10.267588378033146,67.88171145775814,73.09198562734942],"radius":10,"material":"white"},{"kind":"Sphere","center":[37.52073787627738,107.6571145457293,71.49621333536102],"radius":10,"material":"white"},{"kind":"Sphere","center":[136.7087428964622,46.415296983130624,124.26458177952911],"radius":10,"material":"white"},{"kind":"Sphere","center":[54.49156605841525,24.22796065883689,76.37368855007638],"radius":10,"material":"white"},{"kind":"Sphere","center":[136.70800359539288,121.09144824099694,129.85978273333293],"radius":10,"material":"white"},{"kind":"Sphere","center":[30.5546791052378,51.48767048943404,64.27531267248571],"radius":10,"material":"white"},{"kind":"Sphere","center":[91.51491334339141,46.30870214945549,107.79583398350968],"radius":10,"material":"white"},{"kind":"Sphere","center":[33.27032283540463,140.77196070903918,82.96198640353016],"radius":10,"material":"white"},{"kind":"Sphere","center":[66.49911522012916,102.0280591883497,93.63361264809376],"radius":10,"material":"white"},{"kind":"Sphere","center":[12.296725287864614,108.79248409946412,90.64541348952636],"radius":10,"material":"white"},{"kind":"Sphere","center":[107.10234689227505,119.76697027340205,17.129842458898246],"radius":10,"material":"white"},{"kind":"Sphere","center":[116.9167863463404,2.723023979470036,14.35538860583867],"radius":10,"material":"white"},{"kind":"Sphere","center":[47.7871956754702,45.06274419614069,32.61997753664886],"radius":10,"material":"white"},{"kind":"Sphere","center":[18.427174035493657,140.60440866696396,117.84092693851238],"radius":10,"material":"white"},{"kind":"Sphere","center":[161.34010160975836,111.75164170215994,20.025556861368614],"radius":10,"material":"white"},{"kind":"Sphere","center":[65.85591338632155,160.5700376715446,32.5241168515775],"radius":10,"material":"white"},{"kind":"Sphere","center":[12.882419782657426,113.06522573281453,115.60421826630271],"radius":10,"material":"white"},{"kind":"Sphere","center":[29.711560884885035,45.57334086404884,145.3368114029933],"radius":10,"material":"white"},{"kind":"Sphere","center":[92.58215320863307,22.57893802633783,131.12114571081085],"radius":10,"material":"white"},{"kind":"Sphere","center":[109.98044705815882,132.57854535360335,62.98733225990053],"radius":10,"material":"white"},{"kind":"Sphere","center":[37.767579800123784,160.1951784477514,46.41374686967671],"radius":10,"material":"white"},{"kind":"Sphere","center":[90.4226199428835,68.11507428686248,19.101161363257777],"radius":10,"material":"white"},{"kind":"Sphere","center":[40.76115887923319,137.60193345187767,103.29198035009767],"radius":10,"material":"white"},{"kind":"Sphere","center":[105.12792563686376,4.584929078979652,93.95611043524407],"radius":10,"material":"white"},{"kind":"Sphere","center":[41.84437073103504,114.48502805510094,68.07648104439944],"radius":10,"material":"white"},{"kind":"Sphere","center":[54.242740308568,47.36823681274135,115.5642029302421],"radius":10,"material":"white"},{"kind":"Sphere","center":[83.69570074819877,140.68589866845616,145.2173817651066],"radius":10,"material":"white"},{"kind":"Sphere","center":[116.33967191120313,93.01859287917942,76.57560204638605],"radius":10,"material":"white"},{"kind":"Sphere","center":[120.76470320551496,107.32423710978456,48.47407531932028],"radius":10,"material":"white"},{"kind":"Sphere","center":[145.19667605639987,61.16593213567794,151.15647135740053],"radius":10,"material":"white"},{"kind":"Sphere","center":[37.42434582894498,144.95413377624826,107.29544225697505],"radius":10,"material":"white"},{"kind":"Sphere","center":[137.59881798231723,25.75405356284608,136.16578540562645],"radius":10,"material":"white"},{"kind":"Sphere","center":[43.91993627619363,11.49665556108632,61.63503249330263],"radius":10,"material":"white"},{"kind":"Sphere","center":[77.43043780539861,93.17502355366094,125.27470680186877],"radius":10,"material":"white"},{"kind":"Sphere","center":[57.799867082828285,125.01546597757397,95.24025231505304],"radius":10,"material":"white"},{"kind":"Sphere","center":[154.7409939187314,14.89594284084665,157.80236873626566],"radius":10,"material":"white"},{"kind":"Sphere","center":[109.56884298707591,105.94873794073666,40.243848380111864],"radius":10,"material":"white"},{"kind":"Sphere","center":[79.2747449848373,63.22130380575962,55.11802970194027],"radius":10,"material":"white"},{"kind":"Sphere","center":[128.7950372519265,59.05137539612099,87.94055498174748],"radius":10,"material":"white"},{"kind":"Sphere","center":[38.230370880426776,111.28561619833495,88.67594058626672],"radius":10,"material":"white"},{"kind":"Sphere","center":[87.61454343149761,83.43732323688813,104.45608926469865],"radius":10,"material":"white"},{"kind":"Sphere","center":[152.25911541683544,15.063348133332905,163.84500544380504],"radius":10,"material":"white"},{"kind":"Sphere","center":[98.92426070050652,32.09348320245595,71.75978169954884],"radius":10,"material":"white"},{"kind":"Sphere","center":[159.00529007934827,13.453223828032536,50.61080294173984],"radius":10,"material":"white"},{"kind":"Sphere","center":[30.18432320647156,84.60752920615322,15.240794422159237],"radius":10,"material":"white"},{"kind":"Sphere","center":[23.548928940653283,99.58670012537539,84.44634429853652],"radius":10,"material":"white"},{"kind":"Sphere","center":[68.26695769584916,32.53887231235837,143.86987691942218],"radius":10,"material":"white"},{"kind":"Sphere","center":[105.26965383723837,98.85920734530488,83.7629951274711],"radius":10,"material":"white"},{"kind":"Sphere","center":[76.58809436313139,13.120776012464429,43.407160257568584],"radius":10,"material":"white"},{"kind":"Sphere","center":[153.1289005594537,48.53899573428775,102.4040372657881],"radius":10,"material":"white"},{"kind":"Sphere","center":[48.73981618367311,37.38318495312332,76.13698542012988],"radius":10,"material":"white"},{"kind":"Sphere","center":[21.48185259678737,129.3205223089245,85.36218113629474],"radius":10,"material":"white"},{"kind":"Sphere","center":[93.33543144069431,44.164067114422664,160.3324232940087],"radius":10,"material":"white"},{"kind":"Sphere","center":[116.9533903515315,156.55210772921095,3.6159733023327014],"radius":10,"material":"white"},{"kind":"Sphere","center":[45.10185897968395,162.10265291968747,107.96927353730301],"radius":10,"material":"white"},{"kind":"Sphere","center":[108.96801089823244,144.4687830026609,120.56133164395588],"radius":10,"material":"white"},{"kind":"Sphere","center":[12.159632166571123,113.5890754114705,139.5807378184638],"radius":10,"material":"white"},{"kind":"Sphere","center":[17.72060568796829,118.27113927880828,105.64691069756084],"radius":10,"material":"white"},{"kind":"Sphere","center":[104.77904466643213,100.80241397169402,107.07671922475623],"radius":10,"material":"white"},{"kind":"Sphere","center":[158.9861937865671,45.45037141041057,43.312860929031714],"radius":10,"material":"white"},{"kind":"Sphere","center":[84.29162946882909,63.488701027816084,13.468711695054289],"radius":10,"material":"white"},{"kind":"Sphere","center":[74.90307587385347,0.9675124561445025,34.95660049115314],"radius":10,"material":"white"},{"kind":"Sphere","center":[115.97767296692821,54.19634524083409,129.95385287121766],"radius":10,"material":"white"},{"kind":"Sphere","center":[106.68013468036993,11.869405815197517,155.89143539183496],"radius":10,"material":"white"},{"kind":"Sphere","center":[126.16191990969887,81.82030550856838,37.82263369303594],"radius":10,"material":"white"},{"kind":"Sphere","center":[34.93221387316138,121.158749843616,71.1502643516154],"radius":10,"material":"white"},{"kind":"Sphere","center":[38.84321459845639,146.8540435681013,12.593984787711387],"radius":10,"material":"white"},{"kind":"Sphere","center":[134.87931922989847,71.5882220348734,89.35184647222486],"radius":10,"material":"white"},{"kind":"Sphere","center":[60.792442691179566,43.13462814799001,34.4956232996151],"radius":10,"material":"white"},{"kind":"Sphere","center":[0.7502444049075463,104.86301145035901,150.49933108860688],"radius":10,"material":"white"},{"kind":"Sphere","center":[118.25913162325485,1.8128299006094473,163.19656512634393],"radius":10,"material":"white"},{"kind":"Sphere","center":[18.08479570207105,98.82825882552049,74.03307193988384],"radius":10,"material":"white"},{"kind":"Sphere","center":[49.22614612830595,160.3670141585036,14.05007767902855],"radius":10,"material":"white"},{"kind":"Sphere","center":[0.5939988303202015,104.94053167936404,96.20658049204333],"radius":10,"material":"white"},{"kind":"Sphere","center":[120.06635981055467,88.75787466275929,53.6685046363909],"radius":10,"material":"white"},{"kind":"Sphere","center":[67.43612169400896,36.7527385778146,36.70117293447704],"radius":10,"material":"white"},{"kind":"Sphere","center":[131.41594055128635,26.767497167136167,138.66004101323588],"radius":10,"material":"white"},{"kind":"Sphere","center":[129.81105279199977,163.54460977726777,80.71794600862015],"radius":10,"material":"white"},{"kind":"Sphere","center":[107.13609277692396,43.59680335225399,6.272101069237318],"radius":10,"material":"white"},{"kind":"Sphere","center":[3.923310519182425,84.05443505914528,137.58034315502726],"radius":10,"material":"white"},{"kind":"Sphere","center":[120.19781863680161,144.78598625646904,20.425556272452074],"radius":10,"material":"white"},{"kind":"Sphere","center":[64.80301860436015,139.0139837543536,161.6413149416291],"radius":10,"material":"white"},{"kind":"Sphere","center":[148.57263164700117,117.76197793642898,150.53374167717305],"radius":10,"material":"white"},{"kind":"Sphere","center":[89.21649306855085,57.0210359602507,53.28036820499015],"radius":10,"material":"white"},{"kind":"Sphere","center":[37.31271422006079,96.21403083018028,83.49097973588947],"radius":10,"material":"white"},{"kind":"Sphere","center":[35.422474832872524,82.30630987037999,91.76818112860364],"radius":10,"material":"white"},{"kind":"Sphere","center":[58.623698391013036,29.972767971260033,23.75726127464028],"radius":10,"material":"white"},{"kind":"Sphere","center":[60.12313975415274,129.53557066428365,24.812519656588357],"radius":10,"material":"white"},{"kind":"Sphere","center":[159.32974774479194,126.76817346868802,153.8309678529827],"radius":10,"material":"white"},{"kind":"Sphere","center":[5.217346189962765,18.784069080114538,126.22226041763044],"radius":10,"material":"white"},{"kind":"Sphere","center":[136.6152326334496,140.75017635312696,55.95856921805047],"radius":10,"material":"white"},{"kind":"Sphere","center":[5.0262844453119175,139.63689550933688,120.38384265106758],"radius":10,"material":"white"},{"kind":"Sphere","center":[72.76879512589072,100.31208605020201,10.239504262683631],"radius":10,"material":"white"},{"kind":"Sphere","center":[123.87547843729976,74.39976652211128,41.11169464737374],"radius":10,"material":"white"},{"kind":"Sphere","center":[95.06422630294948,40.27269120421632,41.437390202828965],"radius":10,"material":"white"},{"kind":"Sphere","center":[119.9849124421108,154.99749261261428,108.19753505104136],"radius":10,"material":"white"},{"kind":"Sphere","center":[34.36130449223523,41.446062434611584,144.08950983575716],"radius":10,"material":"white"},{"kind":"Sphere","center":[131.664455989578,46.93995043279531,103.54718963300279],"radius":10,"material":"white"},{"kind":"Sphere","center":[61.34143867149638,152.4637427644731,33.01219318913999],"radius":10,"material":"white"},{"kind":"Sphere","center":[99.95400121584849,130.77631874954074,36.01616153606355],"radius":10,"material":"white"},{"kind":"Sphere","center":[36.76732854349886,132.79237441385578,107.3630824813521],"radius":10,"material":"white"},{"kind":"Sphere","center":[116.6025021212144,2.9897510679530415,130.30667112942572],"radius":10,"material":"white"},{"kind":"Sphere","center":[89.29767773631949,90.26271485318495,40.84900168208648],"radius":10,"material":"white"},{"kind":"Sphere","center":[147.33458300936263,139.15091070897444,143.32639609186745],"radius":10,"material":"white"},{"kind":"Sphere","center":[65.76105916753207,57.09736643976729,88.65935123304382],"radius":10,"material":"white"},{"kind":"Sphere","center":[117.75479338363985,160.60631366530993,124.75085575194032],"radius":10,"material":"white"},{"kind":"Sphere","center":[95.37998227530642,71.7377459005384,127.77675124753308],"radius":10,"material":"white"},{"kind":"Sphere","center":[4.73246362728273,67.02367035932564,163.51515904131736],"radius":10,"material":"white"},{"kind":"Sphere","center":[125.70149988514277,86.59041156672663,155.4814352118116],"radius":10,"material":"white"},{"kind":"Sphere","center":[87.07747280529384,75.27298115200824,63.86139789983869],"radius":10,"material":"white"},{"kind":"Sphere","center":[153.78476627582967,44.50276604225745,13.815855157329393],"radius":10,"material":"white"},{"kind":"Sphere","center":[26.652206557110503,119.63659955828726,137.05367077337783],"radius":10,"material":"white"},{"kind":"Sphere","center":[115.73462349355624,105.0919683542179,83.35325586559959],"radius":10,"material":"white"},{"kind":"Sphere","center":[33.4654297124561,87.83959424536079,44.80931982927542],"radius":10,"material":"white"},{"kind":"Sphere","center":[161.7559278722376,50.38777537032722,152.56412172290976],"radius":10,"material":"white"},{"kind":"Sphere","center":[114.86141809774345,115.00108870314918,79.51047650425728],"radius":10,"material":"white"},{"kind":"Sphere","center":[36.145106008840216,24.171011596617987,90.24335549338664],"radius":10,"material":"white"},{"kind":"Sphere","center":[154.0190167496692,149.66888838260698,131.1723533036769],"radius":10,"material":"white"},{"kind":"Sphere","center":[50.56740710180409,55.06099813676766,22.874549787775912],"radius":10,"material":"white"},{"kind":"Sphere","center":[100.87214841697784,133.59905513057637,121.61868683622666],"radius":10,"material":"white"},{"kind":"Sphere","center":[136.96801756983518,80.81703707439006,46.565964291135316],"radius":10,"material":"white"},{"kind":"Sphere","center":[103.81792969601348,147.69755873244398,45.96132543632503],"radius":10,"material":"white"},{"kind":"Sphere","center":[81.61410120748224,111.20193139263199,1.8014305396038932],"radius":10,"material":"white"},{"kind":"Sphere","center":[12.599196116905233,17.02168014161108,60.14931972024468],"radius":10,"material":"white"},{"kind":"Sphere","center":[94.08645313047919,161.6653889546538,44.113041820896164],"radius":10,"material":"white"},{"kind":"Sphere","center":[72.28232301642443,86.02711489128546,34.55322733357548],"radius":10,"material":"white"},{"kind":"Sphere","center":[26.296387084716127,163.5914820071867,13.703325866278524],"radius":10,"material":"white"},{"kind":"Sphere","center":[145.645416506449,158.77164913987536,64.72296133293455],"radius":10,"material":"white"},{"kind":"Sphere","center":[27.153371413771485,47.151411149951755,35.11321069022892],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.55233487038582,96.70870753772002,71.17045187502613],"radius":10,"material":"white"},{"kind":"Sphere","center":[61.963819639892556,18.554193012824573,131.61637115453303],"radius":10,"material":"white"},{"kind":"Sphere","center":[84.30161750169897,132.67539495603177,109.97908270872252],"radius":10,"material":"white"},{"kind":"Sphere","center":[15.409710712423344,142.45956862816143,49.337374760954994],"radius":10,"material":"white"},{"kind":"Sphere","center":[85.53160771067252,82.1782598988628,76.83091702874054],"radius":10,"material":"white"},{"kind":"Sphere","center":[25.25654920166472,133.83688306306038,116.95595390537537],"radius":10,"material":"white"},{"kind":"Sphere","center":[31.51675377240488,63.231015710053924,39.58134376044153],"radius":10,"material":"white"},{"kind":"Sphere","center":[96.95822353650816,41.999230496528604,127.28209874116779],"radius":10,"material":"white"},{"kind":"Sphere","center":[99.14125311614065,122.56955039347783,109.11068582254853],"radius":10,"material":"white"},{"kind":"Sphere","center":[87.66320559068765,67.19927276059835,20.183084535231167],"radius":10,"material":"white"},{"kind":"Sphere","center":[148.1090753853445,4.489727937554459,153.7171046193059],"radius":10,"material":"white"},{"kind":"Sphere","center":[22.090218747822057,93.8996029276876,29.84412212539467],"radius":10,"material":"white"},{"kind":"Sphere","center":[41.033035241522825,143.04325062192746,17.013358465907427],"radius":10,"material":"white"},{"kind":"Sphere","center":[2.8580375028513725,21.148135716723218,104.6111615858406],"radius":10,"material":"white"},{"kind":"Sphere","center":[130.20574292461296,98.58658852207361,117.02923347216696],"radius":10,"material":"white"},{"kind":"Sphere","center":[150.77083905696227,135.97021959713416,87.2260917860684],"radius":10,"material":"white"},{"kind":"Sphere","center":[49.95862848222105,127.28796006409365,8.561390779710877],"radius":10,"material":"white"},{"kind":"Sphere","center":[146.77515841346457,79.56553356235024,114.63966566102503],"radius":10,"material":"white"},{"kind":"Sphere","center":[63.509590432374715,45.819381542066914,121.18038404079796],"radius":10,"material":"white"},{"kind":"Sphere","center":[161.12933121701747,86.61958230388508,82.01927734952794],"radius":10,"material":"white"},{"kind":"Sphere","center":[143.98551953270794,44.0752902185609,26.27152691704075],"radius":10,"material":"white"},{"kind":"Sphere","center":[70.30357195085098,149.5079343931454,126.70094735131131],"radius":10,"material":"white"},{"kind":"Sphere","center":[80.9740055892232,0.7394508879597272,154.59307789599663],"radius":10,"material":"white"},{"kind":"Sphere","center":[81.13533911970563,90.42355890515248,53.327597393786576],"radius":10,"material":"white"},{"kind":"Sphere","center":[84.86320318883655,104.26383527757265,124.43555970520025],"radius":10,"material":"white"},{"kind":"Sphere","center":[57.629139091482955,157.9046571186174,1.8650982471759292],"radius":10,"material":"white"},{"kind":"Sphere","center":[57.25125702133581,79.9964648008216,147.83868190776636],"radius":10,"material":"white"},{"kind":"Sphere","center":[123.43774914500784,113.02292445309281,103.50109501282157],"radius":10,"material":"white"},{"kind":"Sphere","center":[141.97360233527772,40.30470702295499,80.07654874913284],"radius":10,"material":"white"},{"kind":"Sphere","center":[152.7919016198328,159.317755200333,9.227884194338449],"radius":10,"material":"white"},{"kind":"Sphere","center":[138.4230227196843,144.36809656542124,74.91327411849909],"radius":10,"material":"white"},{"kind":"Sphere","center":[22.018833029323485,147.44192662874556,95.27049004258535],"radius":10,"material":"white"},{"kind":"Sphere","center":[84.54913168263738,30.587524885095597,148.07744117194713],"radius":10,"material":"white"},{"kind":"Sphere","center":[29.120230014480324,31.14369515538328,161.19038333310235],"radius":10,"material":"white"},{"kind":"Sphere","center":[19.406842812404843,38.74280026863203,51.11445611125713],"radius":10,"material":"white"},{"kind":"Sphere","center":[118.50965817950667,73.22771410172699,151.51040186999393],"radius":10,"material":"white"},{"kind":"Sphere","center":[52.5607640561381,142.19617435262015,83.72716347613543],"radius":10,"material":"white"},{"kind":"Sphere","center":[23.759015012255336,58.71318147196958,75.65289877176454],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.426296152450455,144.57859501811274,122.93155166746087],"radius":10,"material":"white"},{"kind":"Sphere","center":[4.940324726671345,38.68775853871882,64.40181397198141],"radius":10,"material":"white"},{"kind":"Sphere","center":[158.73449973526664,49.916452143078295,152.2528905993066],"radius":10,"material":"white"},{"kind":"Sphere","center":[162.1621914935164,155.40921329478113,43.89677770964143],"radius":10,"material":"white"},{"kind":"Sphere","center":[29.827147134743576,84.99639636315288,130.2975036900174],"radius":10,"material":"white"},{"kind":"Sphere","center":[110.92213847654965,40.30960645527345,87.16649996964307],"radius":10,"material":"white"},{"kind":"Sphere","center":[68.89997019779548,57.848385105743176,143.23310349308082],"radius":10,"material":"white"},{"kind":"Sphere","center":[60.813589724128285,150.44341298355587,55.43889047504518],"radius":10,"material":"white"},{"kind":"Sphere","center":[72.34520657506422,71.0044224815741,1.519198208801531],"radius":10,"material":"white"},{"kind":"Sphere","center":[43.77364405196615,59.76503178045933,87.04780438009557],"radius":10,"material":"white"},{"kind":"Sphere","center":[143.22234613295691,78.78865689908636,116.57052348331072],"radius":10,"material":"white"},{"kind":"Sphere","center":[111.6270451945007,29.077887430739022,54.5671161383013],"radius":10,"material":"white"},{"kind":"Sphere","center":[162.0363032007197,101.30753908098012,117.02331144122289],"radius":10,"material":"white"},{"kind":"Sphere","center":[43.03409381258019,19.276415860048463,86.58766033341519],"radius":10,"material":"white"},{"kind":"Sphere","center":[67.06567073699019,16.750809505090682,132.34772462732502],"radius":10,"material":"white"},{"kind":"Sphere","center":[110.59095466299905,71.53537694401052,65.60907644451152],"radius":10,"material":"white"},{"kind":"Sphere","center":[152.42048610195909,37.80461972120172,110.67122588530869],"radius":10,"material":"white"},{"kind":"Sphere","center":[118.14284857868286,24.870751817796325,61.87204573923819],"radius":10,"material":"white"},{"kind":"Sphere","center":[68.73174163810313,156.00421350975384,18.42251422781174],"radius":10,"material":"white"},{"kind":"Sphere","center":[139.63256179755575,45.220029813539114,11.65861494816252],"radius":10,"material":"white"},{"kind":"Sphere","center":[107.64924726113463,97.42243135542634,148.26183414706938],"radius":10,"material":"white"},{"kind":"Sphere","center":[21.138538455825678,103.73885463501536,74.07402354636235],"radius":10,"material":"white"},{"kind":"Sphere","center":[140.64612928116307,65.01140135530342,87.11443748848696],"radius":10,"material":"white"},{"kind":"Sphere","center":[75.086309036326,164.97539438507314,19.117794246849083],"radius":10,"material":"white"},{"kind":"Sphere","center":[69.23257630287623,23.245293694807206,101.84895918050582],"radius":10,"material":"white"},{"kind":"Sphere","center":[35.9410466455441,27.85035722294488,58.68759708254518],"radius":10,"material":"white"},{"kind":"Sphere","center":[93.99264998699545,146.81241231835253,4.362868703678987],"radius":10,"material":"white"},{"kind":"Sphere","center":[75.5678383039055,149.9861788869741,126.93761201693253],"radius":10,"material":"white"},{"kind":"Sphere","center":[133.73102682314703,39.51721671723256,81.8060106989894],"radius":10,"material":"white"},{"kind":"Sphere","center":[41.88302483049191,126.68729025356967,111.64232392258465],"radius":10,"material":"white"},{"kind":"Sphere","center":[52.090257645257736,124.24251012901648,93.73842370040684],"radius":10,"material":"white"},{"kind":"Sphere","center":[47.43127055384014,23.71459156894508,152.83875081729596],"radius":10,"material":"white"},{"kind":"Sphere","center":[135.72202059138897,59.23405822139124,35.97867821207772],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.77898561255763,138.88952391265482,162.87264001825173],"radius":10,"material":"white"},{"kind":"Sphere","center":[33.37054437274046,45.28236310877436,104.83038469092112],"radius":10,"material":"white"},{"kind":"Sphere","center":[78.38780122981777,83.42162289897301,6.476507379161525],"radius":10,"material":"white"},{"kind":"Sphere","center":[54.72840715424384,86.16635875301041,48.632833286798686],"radius":10,"material":"white"},{"kind":"Sphere","center":[18.634911831169003,130.70114629335302,16.67694736239753],"radius":10,"material":"white"},{"kind":"Sphere","center":[69.99436181388384,164.6578787689677,83.2727780498316],"radius":10,"material":"white"},{"kind":"Sphere","center":[102.60167006600739,45.80661146774298,135.52972992725057],"radius":10,"material":"white"},{"kind":"Sphere","center":[78.03135601118349,51.844895109789654,91.42433538081823],"radius":10,"material":"white"},{"kind":"Sphere","center":[152.39643599189452,105.51433207018009,130.5817700577087],"radius":10,"material":"white"},{"kind":"Sphere","center":[82.37449046966667,154.39814848385328,30.323195851517433],"radius":10,"material":"white"},{"kind":"Sphere","center":[72.36184465071264,3.777639077210362,128.81391523996425],"radius":10,"material":"white"},{"kind":"Sphere","center":[49.51192284397241,128.2194745787509,4.107107577380791],"radius":10,"material":"white"},{"kind":"Sphere","center":[111.36374949362246,161.69127604369214,103.97814098571632],"radius":10,"material":"white"},{"kind":"Sphere","center":[14.127439741323704,152.10908727736725,80.82713600678221],"radius":10,"material":"white"},{"kind":"Sphere","center":[161.28038168180865,77.50496142260366,122.5772874219045],"radius":10,"material":"white"},{"kind":"Sphere","center":[132.93590846946398,37.998336921397,39.133455624101046],"radius":10,"material":"white"},{"kind":"Sphere","center":[149.505893645246,129.89136065232802,84.23152225205938],"radius":10,"material":"white"},{"kind":"Sphere","center":[129.8492174180257,59.35720328630725,96.71768930089337],"radius":10,"material":"white"},{"kind":"Sphere","center":[130.10186283863308,153.0081486907786,17.486868620788147],"radius":10,"material":"white"},{"kind":"Sphere","center":[154.47499236033576,94.4813890235882,55.10701190818672],"radius":10,"material":"white"},{"kind":"Sphere","center":[125.75357832777924,37.426787156381565,87.04662218437531],"radius":10,"material":"white"},{"kind":"Sphere","center":[9.03021758166522,73.11377705186416,60.51811960430912],"radius":10,"material":"white"},{"kind":"Sphere","center":[152.02453595100656,5.899930379031046,0.7719286467572772],"radius":10,"material":"white"},{"kind":"Sphere","center":[43.745361429522525,103.77183042841068,65.46851601665907],"radius":10,"material":"white"},{"kind":"Sphere","center":[13.12742287881698,5.281711652808231,136.4494727815726],"radius":10,"material":"white"},{"kind":"Sphere","center":[125.13888734832682,44.1096812988113,4.113971305639895],"radius":10,"material":"white"},{"kind":"Sphere","center":[74.90856765969563,86.20471653666085,105.21221915744283],"radius":10,"material":"white"},{"kind":"Sphere","center":[30.058901934666487,160.32544618767287,9.75885868128186],"radius":10,"material":"white"},{"kind":"Sphere","center":[99.39792700867994,130.82299433010272,12.568443224662314],"radius":10,"material":"white"},{"kind":"Sphere","center":[134.7698957207844,70.72644089242277,55.71876899583866],"radius":10,"material":"white"},{"kind":"Sphere","center":[155.98350168031175,135.9330030005097,94.85845993469906],"radius":10,"material":"white"},{"kind":"Sphere","center":[146.92422325284002,137.09984254613687,27.007018297818902],"radius":10,"material":"white"},{"kind":"Sphere","center":[68.08419120338897,101.48678094938917,60.71287812567251],"radius":10,"material":"white"},{"kind":"Sphere","center":[23.79838220093037,41.316172823598144,123.6277313586517],"radius":10,"material":"white"},{"kind":"Sphere","center":[13.022487043122307,10.686563206945303,130.7479242187586],"radius":10,"material":"white"},{"kind":"Sphere","center":[62.166143063807596,10.649925470355896,32.98736557206041],"radius":10,"material":"white"},{"kind":"Sphere","center":[111.61101780563368,144.41487982740702,50.46193089660215],"radius":10,"material":"white"},{"kind":"Sphere","center":[54.24746947440522,142.48375040826517,47.947805633785855],"radius":10,"material":"white"},{"kind":"Sphere","center":[132.3748216702859,51.083503255569944,82.80851680252326],"radius":10,"material":"white"},{"kind":"Sphere","center":[135.8721779954145,58.135940491560774,6.646581201700927],"radius":10,"material":"white"},{"kind":"Sphere","center":[141.16838513618552,151.01943171554862,14.073927235318909],"radius":10,"material":"white"},{"kind":"Sphere","center":[104.33517526313062,147.0676078348266,61.14585250039635],"radius":10,"material":"white"},{"kind":"Sphere","center":[49.33765874798219,10.688365315348381,49.95496944684134],"radius":10,"material":"white"},{"kind":"Sphere","center":[45.55141423549172,86.57361044777942,158.0784725715706],"radius":10,"material":"white"},{"kind":"Sphere","center":[136.6488990399674,35.69955459447217,97.58345243719894],"radius":10,"material":"white"},{"kind":"Sphere","center":[2.713168957833455,72.33385879678248,121.36274386389542],"radius":10,"material":"white"},{"kind":"Sphere","center":[42.45325521384808,58.47019704846048,64.48859895564254],"radius":10,"material":"white"},{"kind":"Sphere","center":[89.76163176281518,42.618009652843874,141.2639894368744],"radius":10,"material":"white"},{"kind":"Sphere","center":[24.85203666483328,84.41542888666342,45.252295235983745],"radius":10,"material":"white"},{"kind":"Sphere","center":[129.15164806468871,57.91888343300941,34.430408626067795],"radius":10,"material":"white"},{"kind":"Sphere","center":[153.9629827750371,13.495105353339168,70.43792635786409],"radius":10,"material":"white"},{"kind":"Sphere","center":[89.9626590121182,56.77915012489315,137.9417846874316],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.36365614406792,52.44865729641487,110.63418297878196],"radius":10,"material":"white"},{"kind":"Sphere","center":[96.21441328786572,140.53363651597607,63.3463435193294],"radius":10,"material":"white"},{"kind":"Sphere","center":[33.06634421706625,14.110515045558085,15.390783758577046],"radius":10,"material":"white"},{"kind":"Sphere","center":[7.792283185740912,65.911145304558,22.997667754124866],"radius":10,"material":"white"},{"kind":"Sphere","center":[70.31537668688519,7.702240305731235,116.98001877901501],"radius":10,"material":"white"},{"kind":"Sphere","center":[122.1780308417244,34.28730485502337,114.15341641238027],"radius":10,"material":"white"},{"kind":"Sphere","center":[110.23890321151966,127.23640251701165,41.415129271906814],"radius":10,"material":"white"},{"kind":"Sphere","center":[93.29409049913033,40.917426273659316,114.33582958451531],"radius":10,"material":"white"},{"kind":"Sphere","center":[135.59673066309065,104.91641758480166,139.61065869760404],"radius":10,"material":"white"},{"kind":"Sphere","center":[21.150517864460614,18.32466567121152,151.84534772390072],"radius":10,"material":"white"},{"kind":"Sphere","center":[77.17420848314286,92.85793756006689,29.759861216494077],"radius":10,"material":"white"},{"kind":"Sphere","center":[158.19749457021726,140.4122187640004,107.57429827980133],"radius":10,"material":"white"},{"kind":"Sphere","center":[12.34557088328584,125.83431085194582,105.80130456848468],"radius":10,"material":"white"},{"kind":"Sphere","center":[89.93256419714149,64.87549464261741,89.46483202773561],"radius":10,"material":"white"},{"kind":"Sphere","center":[99.18152356655197,89.86581899358792,76.72025328054625],"radius":10,"material":"white"},{"kind":"Sphere","center":[42.55422266865315,95.00491824810146,107.2525032423464],"radius":10,"material":"white"},{"kind":"Sphere","center":[102.4007023314896,75.0757997774009,137.76712366310295],"radius":10,"material":"white"},{"kind":"Sphere","center":[97.37345580426155,43.13152851822449,12.878484442980922],"radius":10,"material":"white"},{"kind":"Sphere","center":[34.04177315029666,70.37753495728478,150.29271053797373],"radius":10,"material":"white"},{"kind":"Sphere","center":[115.99914622655045,22.307973806081936,152.6986641796987],"radius":10,"material":"white"},{"kind":"Sphere","center":[144.64632507843828,16.42197658632934,117.79753344642303],"radius":10,"material":"white"},{"kind":"Sphere","center":[145.3080303413967,47.85186458256983,92.3520980140868],"radius":10,"material":"white"},{"kind":"Sphere","center":[120.90481183304988,92.78253801227484,117.51559423391419],"radius":10,"material":"white"},{"kind":"Sphere","center":[25.84981935415789,67.80298346363168,79.73452720352687],"radius":10,"material":"white"},{"kind":"Sphere","center":[110.73259942847207,62.27432477694316,137.8879970277221],"radius":10,"material":"white"},{"kind":"Sphere","center":[54.221161929422884,19.543778048630685,149.4570895369875],"radius":10,"material":"white"},{"kind":"Sphere","center":[89.51011232411454,78.25094975940726,12.708463017438262],"radius":10,"material":"white"},{"kind":"Sphere","center":[156.5479347852299,118.2489300388991,92.74512773508384],"radius":10,"material":"white"},{"kind":"Sphere","center":[12.296628123852749,61.92616021620069,6.233717091648954],"radius":10,"material":"white"},{"kind":"Sphere","center":[110.47138876784624,8.286472821402718,93.29442744889329],"radius":10,"material":"white"},{"kind":"Sphere","center":[28.27964881445273,108.10796363612218,141.77666145673155],"radius":10,"material":"white"},{"kind":"Sphere","center":[128.06342488788536,64.65689099360009,143.26177303023394],"radius":10,"material":"white"},{"kind":"Sphere","center":[52.05883936222686,148.0970542601789,99.80832705982749],"radius":10,"material":"white"},{"kind":"Sphere","center":[156.59830766542674,142.0634306897017,36.59803919790971],"radius":10,"material":"white"},{"kind":"Sphere","center":[66.67539894170017,136.13672203893032,150.1632785529565],"radius":10,"material":"white"},{"kind":"Sphere","center":[109.68676734297767,99.45916648005317,65.4189842773305],"radius":10,"material":"white"},{"kind":"Sphere","center":[53.2541325028454,21.92511845943504,153.43999173479662],"radius":10,"material":"white"},{"kind":"Sphere","center":[116.18015021799998,54.28175500515255,60.8904954749963],"radius":10,"material":"white"},{"kind":"Sphere","center":[4.274072444654041,164.9849656493032,140.75004550328237],"radius":10,"material":"white"},{"kind":"Sphere","center":[29.33254542569699,15.730648564374919,114.01203760618195],"radius":10,"material":"white"},{"kind":"Sphere","center":[3.3087238005104025,96.50980424094878,155.5620936175339],"radius":10,"material":"white"},{"kind":"Sphere","center":[34.826822096537576,25.768029666143875,100.16708664136482],"radius":10,"material":"white"},{"kind":"Sphere","center":[120.39170313996453,19.970619183142894,115.66340446372374],"radius":10,"material":"white"},{"kind":"Sphere","center":[107.20060678006944,141.23682055376747,66.56118951968087],"radius":10,"material":"white"},{"kind":"Sphere","center":[138.5048721605411,42.19716551717112,139.23457042054744],"radius":10,"material":"white"},{"kind":"Sphere","center":[134.58449572293657,78.74802578124394,133.25688297041557],"radius":10,"material":"white"},{"kind":"Sphere","center":[47.249512719260245,71.32380290575831,107.03558847509657],"radius":10,"material":"white"},{"kind":"Sphere","center":[43.3508938817887,150.24865781489683,39.38339263155474],"radius":10,"material":"white"},{"kind":"Sphere","center":[73.00102490444866,103.65379422437707,5.8576428366779165],"radius":10,"material":"white"},{"kind":"Sphere","center":[97.16865725790792,79.16782171715613,68.88234041610849],"radius":10,"material":"white"},{"kind":"Sphere","center":[72.01199857010387,35.00089502016878,150.5904678877675],"radius":10,"material":"white"},{"kind":"Sphere","center":[157.5738892657304,101.39916573205635,56.12554134292703],"radius":10,"material":"white"},{"kind":"Sphere","center":[6.463423242022826,30.519157488889647,92.82547615663275],"radius":10,"material":"white"},{"kind":"Sphere","center":[140.4780997236613,123.96497889929952,37.525537365214504],"radius":10,"material":"white"},{"kind":"Sphere","center":[132.56726574205408,73.93162737003436,141.1530988836668],"radius":10,"material":"white"},{"kind":"Sphere","center":[60.21015022096843,55.32535689711898,157.64141112879284],"radius":10,"material":"white"},{"kind":"Sphere","center":[90.0507042033759,132.29870736251038,92.99440066861834],"radius":10,"material":"white"},{"kind":"Sphere","center":[128.301679404946,10.180760273009309,20.37200734792454],"radius":10,"material":"white"},{"kind":"Sphere","center":[41.76652812456274,162.5133705553646,108.17956060890027],"radius":10,"material":"white"},{"kind":"Sphere","center":[154.05071277884127,11.49647502548876,13.57945048333837],"radius":10,"material":"white"},{"kind":"Sphere","center":[156.64050694508433,2.627847275614662,143.28706165031753],"radius":10,"material":"white"},{"kind":"Sphere","center":[125.64789544421933,14.361493833630842,64.88992017391261],"radius":10,"material":"white"},{"kind":"Sphere","center":[146.3403909260908,30.030511505922206,94.28313931965111],"radius":10,"material":"white"},{"kind":"Sphere","center":[30.736528042227622,46.73488774533533,52.1462763531433],"radius":10,"material":"white"},{"kind":"Sphere","center":[82.93158095932144,18.295808625247034,70.79001789155633],"radius":10,"material":"white"},{"kind":"Sphere","center":[64.73428298033662,35.702881875481204,86.07837656345149],"radius":10,"material":"white"},{"kind":"Sphere","center":[49.22375311506764,69.30403764568399,103.17843288500201],"radius":10,"material":"white"},{"kind":"Sphere","center":[1.076155345161326,16.894706737422418,98.27638868979246],"radius":10,"material":"white"},{"kind":"Sphere","center":[157.7468885977947,43.24966738876272,139.2453321201311],"radius":10,"material":"white"},{"kind":"Sphere","center":[128.22380310362624,97.44606242293781,135.1109943084394],"radius":10,"material":"white"},{"kind":"Sphere","center":[9.447616523269138,52.65499615556948,47.00550382708809],"radius":10,"material":"white"},{"kind":"Sphere","center":[153.83512017845646,122.8589524061254,88.6137992218087],"radius":10,"material":"white"},{"kind":"Sphere","center":[76.56244182648425,164.57173533022132,89.07617418487015],"radius":10,"material":"white"},{"kind":"Sphere","center":[40.72992359579331,125.67062107608723,100.70650078482215],"radius":10,"material":"white"},{"kind":"Sphere","center":[156.2689240344055,84.22601970319357,147.19141313203224],"radius":10,"material":"white"},{"kind":"Sphere","center":[119.00586346258213,95.11143191939632,9.709965978727617],"radius":10,"material":"white"},{"kind":"Sphere","center":[41.42493811745699,46.49122295430495,11.10384659198543],"radius":10,"material":"white"},{"kind":"Sphere","center":[46.646121279084575,153.17038315532545,139.89753550839464],"radius":10,"material":"white"},{"kind":"Sphere","center":[82.42714983596127,140.35144948654295,163.56505563593518],"radius":10,"material":"white"},{"kind":"Sphere","center":[55.70333883126617,107.50697954144032,41.615748830233265],"radius":10,"material":"white"},{"kind":"Sphere","center":[21.062623050571318,70.44283314707666,23.18033646808557],"radius":10,"material":"white"},{"kind":"Sphere","center":[11.432293800503436,158.39091466405497,20.50194708041751],"radius":10,"material":"white"},{"kind":"Sphere","center":[44.081599974849404,106.82916626487619,162.40559063487765],"radius":10,"material":"white"},{"kind":"Sphere","center":[70.7916555692363,150.781494666489,11.757514088375437],"radius":10,"material":"white"},{"kind":"Sphere","center":[143.2479583267338,149.03760706084122,0.31174680465340665],"radius":10,"material":"white"},{"kind":"Sphere","center":[80.65906161199425,120.45871242690892,62.46106657260822],"radius":10,"material":"white"},{"kind":"Sphere","center":[84.17034353137142,36.07962401171158,62.56531857983784],"radius":10,"material":"white"},{"kind":"Sphere","center":[48.11948814490987,158.62805221829944,117.26538848584717],"radius":10,"material":"white"},{"kind":"Sphere","center":[74.66796947350595,123.05191789103434,59.11206781742139],"radius":10,"material":"white"},{"kind":"Sphere","center":[106.8337968329238,85.42602947616497,2.2697094004594787],"radius":10,"material":"white"},{"kind":"Sphere","center":[79.78253578229341,59.526735932752814,121.77886905091194],"radius":10,"material":"white"},{"kind":"Sphere","center":[125.90059080044296,74.2565587883078,157.4835489942987],"radius":10,"material":"white"},{"kind":"Sphere","center":[63.18022881185708,48.579652009082494,153.63743761551936],"radius":10,"material":"white"},{"kind":"Sphere","center":[97.20339279157884,21.50020276311765,10.268415075525162],"radius":10,"material":"white"},{"kind":"Sphere","center":[51.78573927981384,98.79543641308241,111.54061729057862],"radius":10,"material":"white"},{"kind":"Sphere","center":[10.219861081225552,140.48266462896518,11.11538628475263],"radius":10,"material":"white"},{"kind":"Sphere","center":[96.78750349947697,111.880620407723,85.17216008826844],"radius":10,"material":"white"},{"kind":"Sphere","center":[69.48931727202219,5.125976746999213,84.20397028197753],"radius":10,"material":"white"},{"kind":"Sphere","center":[10.930233173781994,2.94880892877021,90.22124801574151],"radius":10,"material":"white"},{"kind":"Sphere","center":[115.82377305292286,164.01850554300185,5.305468449982826],"radius":10,"material":"white"},{"kind":"Sphere","center":[123.28674877568051,3.841827519693762,0.7780034388923285],"radius":10,"material":"white"},{"kind":"Sphere","center":[137.1921746889322,65.85439632675927,100.87534009751546],"radius":10,"material":"white"},{"kind":"Sphere","center":[102.67308064304794,149.97821888753154,56.443221677084225],"radius":10,"material":"white"},{"kind":"Sphere","center":[156.08673747186782,124.7106677231812,161.43447990839283],"radius":10,"material":"white"},{"kind":"Sphere","center":[6.341028545192291,68.88605937698838,43.29171963902996],"radius":10,"material":"white"},{"kind":"Sphere","center":[148.0823882236049,56.92935158944182,60.32710366260277],"radius":10,"material":"white"},{"kind":"Sphere","center":[102.34464286612005,152.6238156191555,56.61470107714475],"radius":10,"material":"white"},{"kind":"Sphere","center":[103.41978939575863,14.737965504882746,79.7031655470707],"radius":10,"material":"white"},{"kind":"Sphere","center":[40.08521600630734,25.48837819269786,159.89506548156254],"radius":10,"material":"white"},{"kind":"Sphere","center":[47.76137427944927,72.5028372203318,144.31455348994103],"radius":10,"material":"white"},{"kind":"Sphere","center":[49.59229554013684,121.53012711826688,163.20484144264844],"radius":10,"material":"white"},{"kind":"Sphere","center":[57.29113535218665,3.4199540039218435,156.09093464802888],"radius":10,"material":"white"},{"kind":"Sphere","center":[40.922537324833144,71.04730908035357,24.78983602789123],"radius":10,"material":"white"},{"kind":"Sphere","center":[23.701637978546454,98.11040217893394,74.16200268477408],"radius":10,"material":"white"},{"kind":"Sphere","center":[164.10903084201863,142.11601946507824,63.76851216464282],"radius":10,"material":"white"},{"kind":"Sphere","center":[102.84467236344683,139.52522384068726,128.8210907743879],"radius":10,"material":"white"},{"kind":"Sphere","center":[163.60538851617977,138.9998070191944,21.056884763285275],"radius":10,"material":"white"},{"kind":"Sphere","center":[10.519500266334509,103.49007762383921,87.83449964883391],"radius":10,"material":"white"},{"kind":"Sphere","center":[50.134971758762525,92.11933178771801,163.59127290005438],"radius":10,"material":"white"},{"kind":"Sphere","center":[103.5360701558696,73.95355234296663,79.02936322846531],"radius":10,"material":"white"},{"kind":"Sphere","center":[125.61875888059718,89.22163394478473,43.418153838039245],"radius":10,"material":"white"},{"kind":"Sphere","center":[145.48914445981714,73.41448199722434,121.4673934534237],"radius":10,"material":"white"},{"kind":"Sphere","center":[136.57807822605366,54.13492547908617,123.64691688105374],"radius":10,"material":"white"},{"kind":"Sphere","center":[50.62579033612701,49.623787072048984,161.79366895812888],"radius":10,"material":"white"},{"kind":"Sphere","center":[155.1879573959676,122.25109727107426,102.43266836841826],"radius":10,"material":"white"},{"kind":"Sphere","center":[103.3802025945801,152.76387528751235,36.644879684986364],"radius":10,"material":"white"},{"kind":"Sphere","center":[147.28249511871712,110.46697698253682,141.18087601526054],"radius":10,"material":"white"},{"kind":"Sphere","center":[19.43578852199622,139.40276073778207,93.1862081361861],"radius":10,"material":"white"},{"kind":"Sphere","center":[72.31555303296395,158.37166411630406,113.87900641766598],"radius":10,"material":"white"},{"kind":"Sphere","center":[124.11100519939114,57.93767415518705,35.047029593157454],"radius":10,"material":"white"},{"kind":"Sphere","center":[85.90648607459525,1.512345000303389,108.4393966689019],"radius":10,"material":"white"},{"kind":"Sphere","center":[97.55949073622457,48.58445762653889,120.45199777242894],"radius":10,"material":"white"},{"kind":"Sphere","center":[37.15300905786968,76.28914749390407,63.99563477182951],"radius":10,"material":"white"},{"kind":"Sphere","center":[46.107594162223776,133.7811847537787,147.9085219503583],"radius":10,"material":"white"}]}}}],"materials":[{"name":"ground material","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.48,0.83,0.53]}},{"name":"big lamp","kind":"DiffuseLight","emit":{"kind":"SolidColor","color":[7,7,7]}},{"name":"moving sphere material","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.7,0.3,0.1]}},{"name":"glass","kind":"Dielectric","refractive_index":1.5},{"name":"matte metal","kind":"Metal","fuzz":1,"albedo":{"kind":"SolidColor","color":[0.8,0.8,0.9]}},{"name":"white","kind":"Lambertian","albedo":{"kind":"SolidColor","color":[0.73,0.73,0.73]}}]} \ No newline at end of file