{
  "negotiation": "Response format is chosen by content negotiation: pass `?format=json` to\nrequest a JSON response, or send an `Accept: application/json` header with\nno `format` param present. Omitting both, or an Accept header that doesn't\nprefer JSON, returns the HTML page. `?format=json` wins outright whenever\npresent, taking priority over the Accept header even when its own value\nisn't recognized. `format` is a declared parameter (available on every\nendpoint) whose only valid value is `json`; any other explicit value is a\nvalidation error -- but because a non-`json` format value is itself read\nas \"this request does not want JSON,\" that error surfaces on the HTML page\n(the message shown inline), never as a JSON error body. If you need format\nmistakes to be script-visible, omit `format` and negotiate purely via the\n`Accept` header.",
  "locale": "Pass `?locale=` naming one of the served locales to select the response's\nlanguage (see the Locales section below for the current list). Locale\naffects VALUES only: `label` text, free-text descriptive fields, and error\nmessages resolve in the requested locale, while every `id`, object key, and\nenum value stays the same fixed English string regardless of locale -- a\nclient can index into the same key path and switch on the same ids whether\nit requested any served locale. `locale` is a declared parameter (available\non every endpoint); a value naming a locale sask doesn't serve is a\nvalidation error (`error.invalid_locale`).",
  "id_label": "Any field representing a localizable domain value (a body name, eclipse\ntype, season, event, House, fixed star, or lunar-calendar id) renders as an\nobject with two keys: `id`, an invariant, English, machine-stable identifier\nsafe to use as a database key, a switch/case value, or a UI class name; and\n`label`, the human-readable text resolved for the request's locale. Only\n`label` changes across locales -- `id` never does. Free-text fields the\nengine already resolved to a display string (notes, rings description,\nnight_summary, image_prompt, lore date/time, and a scene body's\ndirection/color/phase) are plain localized strings with no separate id,\nsince the underlying message unit does not carry one to switch on.",
  "temporal_contract": "Every response carries the resolved moment expressed in every calendar this\nsystem tracks -- as `query` (on /, /moons, /planets, /sky) or as\n`parameters.start` / `parameters.end` (on /ephemeris): `pulse` (the atomic\ninteger time unit), `astro_day` and `astro_time` (the invariant civil\ncalendar), `orbital_position`, and both `fatunik_date` and `terpin_date`\n(the two in-world civil calendars). This is always present regardless of\nwhich input form the request supplied (pulse, astro_day, or a calendar\ndate) -- the server resolves the moment once and reports every\nrepresentation, so a client never needs to convert calendars itself. /sky\nand /ephemeris additionally carry lore-language time/date strings when\nlore_time is enabled in server config.",
  "error_envelope": "A failed request -- malformed input, a value outside a declared constraint,\nan unknown parameter, or the ephemeris throttle -- returns HTTP 400 with a\nJSON body shaped `{\"error\": {\"code\": \"...\", \"message\": \"...\"}}`. `code` is\na stable, English, locale-invariant identifier safe to match on in client\ncode, drawn from the same i18n tag that produces `message` with its\n`error.` prefix stripped. `message` is the human-readable, locale-resolved\nexplanation. See the Error Codes section below for the complete catalog of\ncodes this API can return.",
  "integration_guidance": "Distilled from real integration friction (DEBT-0006):\n\n1. Query by whichever calendar input you already have -- `pulse`,\n   `astro_day` (+ optional `time_of_day`), or a Fatunik/Terpin date triple\n   -- the server resolves ONE moment and reports it back in every\n   representation, so you never need to convert calendars client-side.\n2. /ephemeris throttles both ends: `step_minutes` cannot go below the\n   server's configured step floor, and the total range cannot exceed its\n   configured range cap -- requesting outside those bounds is a validation\n   error (`error.ephemeris_range_invalid`), never a silently-clamped\n   result. See the /ephemeris parameter descriptions below for this\n   deploy's actual limits.\n3. /ephemeris's range end is either a raw `end_pulse` OR a `duration_days`\n   relative to `start` -- never a full calendar-date end, unlike `start`,\n   which accepts any of the four moment forms.\n4. Build your UI or downstream logic against `id`, never against `label`\n   text -- `label` changes with locale, `id` never does.\n5. An empty-string query parameter value is treated identically to an\n   absent parameter everywhere in this API -- `?pulse=` is the same as\n   omitting `pulse`.\n6. `/` only accepts `pulse` as input (not astro_day or a calendar date) --\n   unlike /moons, /planets, and /sky, which accept all four moment forms.",
  "locales": [
    "en-US",
    "es-ES"
  ],
  "shared_parameters": [
    {
      "name": "format",
      "type": "enum",
      "required": false,
      "description": "Content-negotiation override (DD-0026): format=json forces a JSON response regardless of the Accept header.",
      "constraints": {
        "values": [
          "json"
        ]
      }
    },
    {
      "name": "locale",
      "type": "enum",
      "required": false,
      "description": "Locale toggle (DD-0022): must name a locale sask serves (see /help).",
      "constraints": {
        "values": [
          "en-US",
          "es-ES"
        ]
      }
    }
  ],
  "endpoints": {
    "/": {
      "description": "Resolves a single moment (via `pulse` only -- this endpoint does not accept\nastro_day or calendar-date input) and returns its temporal contract: the\npulse, Astro day/time, orbital position, and both civil calendar dates.",
      "parameters": [
        {
          "name": "pulse",
          "type": "float",
          "required": false,
          "description": "Raw pulse count. Rounded to the nearest integer pulse."
        }
      ],
      "response_shape": {
        "astro_day": "number",
        "astro_time": "string",
        "fatunik_date": {
          "calendar_id": "string",
          "day": "number",
          "month": "number",
          "year": "number"
        },
        "orbital_position": "number",
        "pulse": "number",
        "terpin_date": {
          "calendar_id": "string",
          "day": "number",
          "month": "number",
          "year": "number"
        }
      },
      "examples": {
        "basic": {
          "request": "/?pulse=86400&format=json",
          "status": 200,
          "body": {
            "astro_day": 2,
            "astro_time": "00:00:00",
            "fatunik_date": {
              "calendar_id": "fatunik",
              "day": 30,
              "month": 10,
              "year": -1531
            },
            "orbital_position": 0.0027379092558307886,
            "pulse": 86400,
            "terpin_date": {
              "calendar_id": "terpin",
              "day": 5,
              "month": 1,
              "year": -1042
            }
          }
        },
        "localized": {
          "request": "/?pulse=86400&format=json&locale=es-ES",
          "status": 200,
          "body": {
            "astro_day": 2,
            "astro_time": "00:00:00",
            "fatunik_date": {
              "calendar_id": "fatunik",
              "day": 30,
              "month": 10,
              "year": -1531
            },
            "orbital_position": 0.0027379092558307886,
            "pulse": 86400,
            "terpin_date": {
              "calendar_id": "terpin",
              "day": 5,
              "month": 1,
              "year": -1042
            }
          }
        },
        "error": {
          "request": "/?format=json",
          "status": 400,
          "body": {
            "error": {
              "code": "missing_moment_query",
              "message": "Se requiere un par\u00e1metro de pulso, astro_day o fecha de calendario."
            }
          }
        }
      }
    },
    "/ephemeris": {
      "description": "Resolves a start moment (the full moment resolution, prefixed `start_`)\nand a range end (either a raw `end_pulse` or a `duration_days` relative to\nstart), then returns a time series of sky scenes stepped by\n`step_minutes` across that range, in a `scribal` (lore-language scenes),\n`kinematic` (compact per-body numeric data), or `both` profile.",
      "parameters": [
        {
          "name": "end_pulse",
          "type": "float",
          "required": false,
          "description": "Ephemeris range end, as a raw pulse count (selects pulse mode; mutually exclusive with duration_days)."
        },
        {
          "name": "duration_days",
          "type": "int",
          "required": false,
          "description": "Ephemeris range length in days from start (selects date mode; mutually exclusive with end_pulse).",
          "constraints": {
            "min": 1
          }
        },
        {
          "name": "step_minutes",
          "type": "int",
          "required": false,
          "description": "Ephemeris series step size, in Astro minutes. Required whenever any ephemeris field is submitted. Subject to the ephemeris throttle's step floor (config/ephemeris_data.toml)."
        },
        {
          "name": "profile",
          "type": "enum",
          "required": false,
          "description": "Which series to render: lore-language scenes (scribal), compact per-body numeric data (kinematic), or both.",
          "default": "scribal",
          "constraints": {
            "values": [
              "scribal",
              "kinematic",
              "both"
            ]
          }
        }
      ],
      "moment_resolution": {
        "prefix": "start_",
        "priority": [
          "pulse",
          "astro_day",
          "fatunik_date",
          "terpin_date"
        ],
        "branches": {
          "pulse": [
            {
              "name": "start_pulse",
              "type": "float",
              "required": false,
              "description": "Raw pulse count. Rounded to the nearest integer pulse."
            }
          ],
          "astro_day": [
            {
              "name": "start_astro_day",
              "type": "int",
              "required": false,
              "description": "1-indexed Astro Day."
            },
            {
              "name": "start_time_of_day",
              "type": "string",
              "required": false,
              "description": "Civil time-of-day within an Astro Day, paired with astro_day. Range 00:00:00-23:59:59.",
              "constraints": {
                "pattern": "HH:MM:SS"
              }
            }
          ],
          "fatunik_date": [
            {
              "name": "start_fatunik_year",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar year, paired with fatunik_month and fatunik_day."
            },
            {
              "name": "start_fatunik_month",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar month, paired with fatunik_year and fatunik_day."
            },
            {
              "name": "start_fatunik_day",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar day, paired with fatunik_year and fatunik_month."
            }
          ],
          "terpin_date": [
            {
              "name": "start_terpin_year",
              "type": "int",
              "required": false,
              "description": "Terpin calendar year, paired with terpin_month and terpin_day."
            },
            {
              "name": "start_terpin_month",
              "type": "int",
              "required": false,
              "description": "Terpin calendar month, paired with terpin_year and terpin_day."
            },
            {
              "name": "start_terpin_day",
              "type": "int",
              "required": false,
              "description": "Terpin calendar day, paired with terpin_year and terpin_month."
            }
          ]
        }
      },
      "response_shape": {
        "parameters": {
          "end": {
            "astro_day": "number",
            "astro_time": "string",
            "fatunik_date": {
              "calendar_id": "string",
              "day": "number",
              "month": "number",
              "year": "number"
            },
            "orbital_position": "number",
            "pulse": "number",
            "terpin_date": {
              "calendar_id": "string",
              "day": "number",
              "month": "number",
              "year": "number"
            }
          },
          "profile": "string",
          "start": {
            "astro_day": "number",
            "astro_time": "string",
            "fatunik_date": {
              "calendar_id": "string",
              "day": "number",
              "month": "number",
              "year": "number"
            },
            "orbital_position": "number",
            "pulse": "number",
            "terpin_date": {
              "calendar_id": "string",
              "day": "number",
              "month": "number",
              "year": "number"
            }
          },
          "step_minutes": "number",
          "step_pulses": "number"
        },
        "series": {
          "kinematic": "null",
          "scribal": {
            "days": {
              "2": {
                "body_rise_transit_set": {
                  "aesthra": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "beyarus": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "calumbra": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "dramond": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "endor": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "jembor": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "kanka": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "kreetha": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "lelako": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "lethra": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "sella": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "shunna": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "thurnak": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "zehembra": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "zelven": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  }
                },
                "season": {
                  "id": "string",
                  "label": "string"
                }
              },
              "3": {
                "body_rise_transit_set": {
                  "aesthra": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "beyarus": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "calumbra": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "dramond": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "endor": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "jembor": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "kanka": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "kreetha": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "lelako": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "lethra": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "sella": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "shunna": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "thurnak": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "zehembra": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  },
                  "zelven": {
                    "rise": "number",
                    "set": "number",
                    "transit": "number"
                  }
                },
                "season": {
                  "id": "string",
                  "label": "string"
                }
              }
            },
            "steps": [
              {
                "active_house": {
                  "id": "string",
                  "label": "string"
                },
                "astro_day": "number",
                "astro_time": "string",
                "bodies_up": [
                  {
                    "altitude": "number",
                    "body_type": "string",
                    "brightness": "number",
                    "color": "string",
                    "direction": "string",
                    "name": {
                      "id": "string",
                      "label": "string"
                    },
                    "phase": "string"
                  }
                ],
                "circumpolar_houses": [
                  {
                    "id": "string",
                    "label": "string"
                  }
                ],
                "co_fullness_tonight": {
                  "count": "number",
                  "moons": [
                    {
                      "id": "string",
                      "label": "string"
                    }
                  ],
                  "observable": "boolean"
                },
                "pulse": "number",
                "stars_up": [
                  {
                    "name": {
                      "id": "string",
                      "label": "string"
                    },
                    "position": "string"
                  }
                ]
              }
            ]
          }
        },
        "summary": {
          "end_pulse": "number",
          "start_pulse": "number",
          "step_count": "number"
        }
      },
      "examples": {
        "basic": {
          "request": "/ephemeris?start_pulse=86400&step_minutes=60&duration_days=1&format=json",
          "status": 200,
          "body": {
            "parameters": {
              "end": {
                "astro_day": 3,
                "astro_time": "00:00:00",
                "fatunik_date": {
                  "calendar_id": "fatunik",
                  "day": 1,
                  "month": 11,
                  "year": -1531
                },
                "orbital_position": 0.005475818511661577,
                "pulse": 172800,
                "terpin_date": {
                  "calendar_id": "terpin",
                  "day": 1,
                  "month": 2,
                  "year": -1042
                }
              },
              "profile": "scribal",
              "start": {
                "astro_day": 2,
                "astro_time": "00:00:00",
                "fatunik_date": {
                  "calendar_id": "fatunik",
                  "day": 30,
                  "month": 10,
                  "year": -1531
                },
                "orbital_position": 0.0027379092558307886,
                "pulse": 86400,
                "terpin_date": {
                  "calendar_id": "terpin",
                  "day": 5,
                  "month": 1,
                  "year": -1042
                }
              },
              "step_minutes": 60,
              "step_pulses": 3600
            },
            "series": {
              "kinematic": null,
              "scribal": {
                "days": {
                  "2": {
                    "body_rise_transit_set": {
                      "aesthra": {
                        "rise": 66576,
                        "set": 110424,
                        "transit": 88500
                      },
                      "beyarus": {
                        "rise": 57721,
                        "set": 96911,
                        "transit": 77316
                      },
                      "calumbra": {
                        "rise": 97854,
                        "set": 144682,
                        "transit": 121268
                      },
                      "dramond": {
                        "rise": 81884,
                        "set": 132228,
                        "transit": 107056
                      },
                      "endor": {
                        "rise": 22387,
                        "set": 65227,
                        "transit": 43807
                      },
                      "jembor": {
                        "rise": 57982,
                        "set": 92772,
                        "transit": 75377
                      },
                      "kanka": {
                        "rise": 26168,
                        "set": 67720,
                        "transit": 46944
                      },
                      "kreetha": {
                        "rise": 44619,
                        "set": 79809,
                        "transit": 62214
                      },
                      "lelako": {
                        "rise": 68352,
                        "set": 116046,
                        "transit": 92199
                      },
                      "lethra": {
                        "rise": 62121,
                        "set": 103907,
                        "transit": 83014
                      },
                      "sella": {
                        "rise": 92044,
                        "set": 141566,
                        "transit": 116805
                      },
                      "shunna": {
                        "rise": 82779,
                        "set": 133549,
                        "transit": 108164
                      },
                      "thurnak": {
                        "rise": 49551,
                        "set": 85125,
                        "transit": 67338
                      },
                      "zehembra": {
                        "rise": 57630,
                        "set": 94976,
                        "transit": 76303
                      },
                      "zelven": {
                        "rise": 53826,
                        "set": 89010,
                        "transit": 71418
                      }
                    },
                    "season": {
                      "id": "greening",
                      "label": "Greening"
                    }
                  },
                  "3": {
                    "body_rise_transit_set": {
                      "aesthra": {
                        "rise": 153259,
                        "set": 197345,
                        "transit": 175302
                      },
                      "beyarus": {
                        "rise": 144237,
                        "set": 183457,
                        "transit": 163847
                      },
                      "calumbra": {
                        "rise": 188762,
                        "set": 233908,
                        "transit": 211335
                      },
                      "dramond": {
                        "rise": 168455,
                        "set": 218837,
                        "transit": 193646
                      },
                      "endor": {
                        "rise": 111903,
                        "set": 153217,
                        "transit": 132560
                      },
                      "jembor": {
                        "rise": 145589,
                        "set": 181221,
                        "transit": 163405
                      },
                      "kanka": {
                        "rise": 114821,
                        "set": 155585,
                        "transit": 135203
                      },
                      "kreetha": {
                        "rise": 131023,
                        "set": 166211,
                        "transit": 148617
                      },
                      "lelako": {
                        "rise": 160512,
                        "set": 212236,
                        "transit": 186374
                      },
                      "lethra": {
                        "rise": 148410,
                        "set": 190264,
                        "transit": 169337
                      },
                      "sella": {
                        "rise": 182384,
                        "set": 230220,
                        "transit": 206302
                      },
                      "shunna": {
                        "rise": 175179,
                        "set": 225179,
                        "transit": 200179
                      },
                      "thurnak": {
                        "rise": 136100,
                        "set": 171674,
                        "transit": 153887
                      },
                      "zehembra": {
                        "rise": 147375,
                        "set": 186951,
                        "transit": 167163
                      },
                      "zelven": {
                        "rise": 140255,
                        "set": 175455,
                        "transit": 157855
                      }
                    },
                    "season": {
                      "id": "greening",
                      "label": "Greening"
                    }
                  }
                },
                "steps": [
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "00:00:00",
                    "bodies_up": [
                      {
                        "altitude": 17.216475102845333,
                        "body_type": "moon",
                        "brightness": 0.022182520621395956,
                        "color": "Rust-brown",
                        "direction": "SW low",
                        "name": {
                          "id": "jembor",
                          "label": "Jembor"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 24.500250524126162,
                        "body_type": "moon",
                        "brightness": 0.033050460149444905,
                        "color": "Gold-hued white",
                        "direction": "SW mid",
                        "name": {
                          "id": "zehembra",
                          "label": "Zehembra"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 11.405832170997172,
                        "body_type": "moon",
                        "brightness": 0.1987908510739541,
                        "color": "Ice-blue shimmer",
                        "direction": "E low",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 14.438893936723328,
                        "body_type": "planet",
                        "brightness": 0.23844786907058346,
                        "color": "Warm amber, hazy rim",
                        "direction": "E low",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 7.623282550878364,
                        "body_type": "planet",
                        "brightness": 0.49619669972272573,
                        "color": "Banded cream and tawny",
                        "direction": "SW low",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "waning crescent"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 86400,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "01:00:00",
                    "bodies_up": [
                      {
                        "altitude": 8.21692726403999,
                        "body_type": "moon",
                        "brightness": 0.021991229689859473,
                        "color": "Rust-brown",
                        "direction": "SW low",
                        "name": {
                          "id": "jembor",
                          "label": "Jembor"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 22.46792408763752,
                        "body_type": "moon",
                        "brightness": 0.20185972274051722,
                        "color": "Ice-blue shimmer",
                        "direction": "E mid",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 26.423367922249454,
                        "body_type": "planet",
                        "brightness": 0.2384502364219837,
                        "color": "Warm amber, hazy rim",
                        "direction": "E mid",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 90000,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "02:00:00",
                    "bodies_up": [
                      {
                        "altitude": 3.90859911794308,
                        "body_type": "moon",
                        "brightness": 0.15696750581119032,
                        "color": "Ashy bronze",
                        "direction": "E low",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 33.78852811252247,
                        "body_type": "moon",
                        "brightness": 0.20492815653544386,
                        "color": "Ice-blue shimmer",
                        "direction": "E mid",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 38.59460159730249,
                        "body_type": "planet",
                        "brightness": 0.2384526081781082,
                        "color": "Warm amber, hazy rim",
                        "direction": "E mid",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 93600,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "03:00:00",
                    "bodies_up": [
                      {
                        "altitude": 15.193642417838126,
                        "body_type": "moon",
                        "brightness": 0.1576944939474477,
                        "color": "Ashy bronze",
                        "direction": "E low",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 45.17705583065096,
                        "body_type": "moon",
                        "brightness": 0.20799542999613344,
                        "color": "Ice-blue shimmer",
                        "direction": "E mid",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 50.68148679108409,
                        "body_type": "planet",
                        "brightness": 0.23845498433553738,
                        "color": "Warm amber, hazy rim",
                        "direction": "E mid",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 97200,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "04:00:00",
                    "bodies_up": [
                      {
                        "altitude": 26.78506261723942,
                        "body_type": "moon",
                        "brightness": 0.15841693988183014,
                        "color": "Ashy bronze",
                        "direction": "E mid",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 7.3452995921287805,
                        "body_type": "moon",
                        "brightness": 0.1642168455775006,
                        "color": "Silvery-gray",
                        "direction": "E low",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 56.357761334162426,
                        "body_type": "moon",
                        "brightness": 0.21106082093318604,
                        "color": "Ice-blue shimmer",
                        "direction": "E high",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 62.16886754883491,
                        "body_type": "planet",
                        "brightness": 0.23845736489085448,
                        "color": "Warm amber, hazy rim",
                        "direction": "SE high",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 100800,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "05:00:00",
                    "bodies_up": [
                      {
                        "altitude": 38.44653223509629,
                        "body_type": "moon",
                        "brightness": 0.15913478673724157,
                        "color": "Ashy bronze",
                        "direction": "E mid",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 18.908884138175395,
                        "body_type": "moon",
                        "brightness": 0.1647631511634104,
                        "color": "Silvery-gray",
                        "direction": "E low",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 66.69917042765462,
                        "body_type": "moon",
                        "brightness": 0.21412360760044202,
                        "color": "Ice-blue shimmer",
                        "direction": "SE high",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 71.50945445549304,
                        "body_type": "planet",
                        "brightness": 0.23845974984064555,
                        "color": "Warm amber, hazy rim",
                        "direction": "SE high",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 104400,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "06:00:00",
                    "bodies_up": [
                      {
                        "altitude": 49.86313125460202,
                        "body_type": "moon",
                        "brightness": 0.1598479779986645,
                        "color": "Ashy bronze",
                        "direction": "E mid",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 30.413290122109494,
                        "body_type": "moon",
                        "brightness": 0.16530071023184567,
                        "color": "Silvery-gray",
                        "direction": "E mid",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 74.13648258344205,
                        "body_type": "moon",
                        "brightness": 0.2171830688649167,
                        "color": "Ice-blue shimmer",
                        "direction": "SE high",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 74.03723973496173,
                        "body_type": "planet",
                        "brightness": 0.23846213918149958,
                        "color": "Warm amber, hazy rim",
                        "direction": "S high",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 108000,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "07:00:00",
                    "bodies_up": [
                      {
                        "altitude": 6.438770951086215,
                        "body_type": "moon",
                        "brightness": 0.1297907263309484,
                        "color": "Pale gray-blue",
                        "direction": "E low",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 60.41170625712478,
                        "body_type": "moon",
                        "brightness": 0.1605564575176095,
                        "color": "Ashy bronze",
                        "direction": "SE high",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 41.51571181912582,
                        "body_type": "moon",
                        "brightness": 0.16582945989394068,
                        "color": "Silvery-gray",
                        "direction": "E mid",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 73.80046691107358,
                        "body_type": "moon",
                        "brightness": 0.22023848437659155,
                        "color": "Ice-blue shimmer",
                        "direction": "SW high",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 67.31516704893346,
                        "body_type": "planet",
                        "brightness": 0.23846453291000824,
                        "color": "Warm amber, hazy rim",
                        "direction": "SW high",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 111600,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "08:00:00",
                    "bodies_up": [
                      {
                        "altitude": 17.93606154727275,
                        "body_type": "moon",
                        "brightness": 0.1297521011915548,
                        "color": "Pale gray-blue",
                        "direction": "E low",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 68.46583600184482,
                        "body_type": "moon",
                        "brightness": 0.16126016951653557,
                        "color": "Ashy bronze",
                        "direction": "SE high",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 51.61817192252046,
                        "body_type": "moon",
                        "brightness": 0.1663493382914391,
                        "color": "Silvery-gray",
                        "direction": "SE mid",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 66.00952777739104,
                        "body_type": "moon",
                        "brightness": 0.22328913473802028,
                        "color": "Ice-blue shimmer",
                        "direction": "SW high",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 6.300128367350278,
                        "body_type": "moon",
                        "brightness": 0.09766720309339993,
                        "color": "Deep violet-brown",
                        "direction": "E low",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 56.575521195674206,
                        "body_type": "planet",
                        "brightness": 0.23846693102276628,
                        "color": "Warm amber, hazy rim",
                        "direction": "W high",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 115200,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "09:00:00",
                    "bodies_up": [
                      {
                        "altitude": 28.828354764118707,
                        "body_type": "moon",
                        "brightness": 0.12971021363703322,
                        "color": "Pale gray-blue",
                        "direction": "SE mid",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 70.43610512786086,
                        "body_type": "moon",
                        "brightness": 0.16195905859324156,
                        "color": "Ashy bronze",
                        "direction": "S high",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 59.50682043865376,
                        "body_type": "moon",
                        "brightness": 0.16686028460393126,
                        "color": "Silvery-gray",
                        "direction": "SE high",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 55.54513882790312,
                        "body_type": "moon",
                        "brightness": 0.22633430167371082,
                        "color": "Ice-blue shimmer",
                        "direction": "W high",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 17.717345317409492,
                        "body_type": "moon",
                        "brightness": 0.09758958756169678,
                        "color": "Deep violet-brown",
                        "direction": "E low",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 44.695235549288014,
                        "body_type": "planet",
                        "brightness": 0.238469333516371,
                        "color": "Warm amber, hazy rim",
                        "direction": "W mid",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 118800,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "10:00:00",
                    "bodies_up": [
                      {
                        "altitude": 38.5706194167598,
                        "body_type": "moon",
                        "brightness": 0.1296650657778108,
                        "color": "Pale gray-blue",
                        "direction": "SE mid",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 64.7999479597534,
                        "body_type": "moon",
                        "brightness": 0.16265306972522775,
                        "color": "Ashy bronze",
                        "direction": "SW high",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 63.02195942475575,
                        "body_type": "moon",
                        "brightness": 0.1673622390559692,
                        "color": "Silvery-gray",
                        "direction": "S high",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 44.29838608522534,
                        "body_type": "moon",
                        "brightness": 0.22937326819924386,
                        "color": "Ice-blue shimmer",
                        "direction": "W mid",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 28.37525275413717,
                        "body_type": "moon",
                        "brightness": 0.09751073375116928,
                        "color": "Deep violet-brown",
                        "direction": "SE mid",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 32.52863737792266,
                        "body_type": "planet",
                        "brightness": 0.23847174038742272,
                        "color": "Warm amber, hazy rim",
                        "direction": "W mid",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 122400,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "11:00:00",
                    "bodies_up": [
                      {
                        "altitude": 46.26976252621023,
                        "body_type": "moon",
                        "brightness": 0.12961665988857915,
                        "color": "Pale gray-blue",
                        "direction": "SE mid",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 55.08805302062767,
                        "body_type": "moon",
                        "brightness": 0.16334214827402785,
                        "color": "Ashy bronze",
                        "direction": "SW high",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 60.49784084611553,
                        "body_type": "moon",
                        "brightness": 0.16785514292405984,
                        "color": "Silvery-gray",
                        "direction": "SW high",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 32.854942792297706,
                        "body_type": "moon",
                        "brightness": 0.2324053187900859,
                        "color": "Ice-blue shimmer",
                        "direction": "W mid",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 37.68327923537604,
                        "body_type": "moon",
                        "brightness": 0.09743064371358984,
                        "color": "Deep violet-brown",
                        "direction": "SE mid",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 20.42679018418058,
                        "body_type": "planet",
                        "brightness": 0.23847415163252447,
                        "color": "Warm amber, hazy rim",
                        "direction": "W mid",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 126000,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "12:00:00",
                    "bodies_up": [
                      {
                        "altitude": 50.62915359302543,
                        "body_type": "moon",
                        "brightness": 0.12956499840817962,
                        "color": "Pale gray-blue",
                        "direction": "S mid",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 43.87239366138772,
                        "body_type": "moon",
                        "brightness": 0.1640262399895105,
                        "color": "Ashy bronze",
                        "direction": "W mid",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 53.15696410438334,
                        "body_type": "moon",
                        "brightness": 0.16833893854353518,
                        "color": "Silvery-gray",
                        "direction": "SW mid",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 21.47732176379786,
                        "body_type": "moon",
                        "brightness": 0.2354297395500604,
                        "color": "Ice-blue shimmer",
                        "direction": "W mid",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 44.71239407404468,
                        "body_type": "moon",
                        "brightness": 0.09734931953289748,
                        "color": "Deep violet-brown",
                        "direction": "SE mid",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 8.627551999038202,
                        "body_type": "planet",
                        "brightness": 0.23847656724828215,
                        "color": "Warm amber, hazy rim",
                        "direction": "W low",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 129600,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "13:00:00",
                    "bodies_up": [
                      {
                        "altitude": 50.48726991955139,
                        "body_type": "moon",
                        "brightness": 0.12951008393948066,
                        "color": "Pale gray-blue",
                        "direction": "S mid",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 32.12367871617189,
                        "body_type": "moon",
                        "brightness": 0.16470529101415032,
                        "color": "Ashy bronze",
                        "direction": "W mid",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 43.25258497252243,
                        "body_type": "moon",
                        "brightness": 0.16881356931529823,
                        "color": "Silvery-gray",
                        "direction": "SW mid",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 10.351375409892258,
                        "body_type": "moon",
                        "brightness": 0.23844581837943402,
                        "color": "Ice-blue shimmer",
                        "direction": "W low",
                        "name": {
                          "id": "shunna",
                          "label": "Shunna"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 48.239434434801225,
                        "body_type": "moon",
                        "brightness": 0.09726676332514353,
                        "color": "Deep violet-brown",
                        "direction": "S mid",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 6.400371946288762,
                        "body_type": "planet",
                        "brightness": 0.4487836789438312,
                        "color": "Pale wheat-gold",
                        "direction": "SE low",
                        "name": {
                          "id": "kreetha",
                          "label": "Kreetha"
                        },
                        "phase": "last quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 133200,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "14:00:00",
                    "bodies_up": [
                      {
                        "altitude": 45.880143267627744,
                        "body_type": "moon",
                        "brightness": 0.12945191924924632,
                        "color": "Pale gray-blue",
                        "direction": "SW mid",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 20.2529834318849,
                        "body_type": "moon",
                        "brightness": 0.1653792478872679,
                        "color": "Ashy bronze",
                        "direction": "W mid",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 32.15196877401353,
                        "body_type": "moon",
                        "brightness": 0.1692789797124447,
                        "color": "Silvery-gray",
                        "direction": "W mid",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 47.361717492051135,
                        "body_type": "moon",
                        "brightness": 0.09718297723843664,
                        "color": "Deep violet-brown",
                        "direction": "S mid",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 2.302089346879089,
                        "body_type": "planet",
                        "brightness": 0.14082510582333338,
                        "color": "Rusty blood-red",
                        "direction": "SE low",
                        "name": {
                          "id": "thurnak",
                          "label": "Thurnak"
                        },
                        "phase": "last quarter"
                      },
                      {
                        "altitude": 16.042423560443236,
                        "body_type": "planet",
                        "brightness": 0.4487840304109832,
                        "color": "Pale wheat-gold",
                        "direction": "SE low",
                        "name": {
                          "id": "kreetha",
                          "label": "Kreetha"
                        },
                        "phase": "last quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 136800,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "15:00:00",
                    "bodies_up": [
                      {
                        "altitude": 37.99715078793735,
                        "body_type": "moon",
                        "brightness": 0.12939050726799725,
                        "color": "Pale gray-blue",
                        "direction": "SW mid",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 8.506394619995287,
                        "body_type": "moon",
                        "brightness": 0.16604805754923913,
                        "color": "Ashy bronze",
                        "direction": "W low",
                        "name": {
                          "id": "sella",
                          "label": "Sella"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 20.52068798742366,
                        "body_type": "moon",
                        "brightness": 0.16973511528675908,
                        "color": "Silvery-gray",
                        "direction": "W mid",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 42.3228811700807,
                        "body_type": "moon",
                        "brightness": 0.09709796345288685,
                        "color": "Deep violet-brown",
                        "direction": "SW mid",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 12.5567577216814,
                        "body_type": "planet",
                        "brightness": 0.14082310089110792,
                        "color": "Rusty blood-red",
                        "direction": "SE low",
                        "name": {
                          "id": "thurnak",
                          "label": "Thurnak"
                        },
                        "phase": "last quarter"
                      },
                      {
                        "altitude": 0.4694102171638218,
                        "body_type": "planet",
                        "brightness": 0.49616514077511487,
                        "color": "Banded cream and tawny",
                        "direction": "SE low",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 24.054860951615428,
                        "body_type": "planet",
                        "brightness": 0.44878438307261537,
                        "color": "Pale wheat-gold",
                        "direction": "SE mid",
                        "name": {
                          "id": "kreetha",
                          "label": "Kreetha"
                        },
                        "phase": "last quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 140400,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "16:00:00",
                    "bodies_up": [
                      {
                        "altitude": 28.111876863460527,
                        "body_type": "moon",
                        "brightness": 0.12932585108986278,
                        "color": "Pale gray-blue",
                        "direction": "SW mid",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 8.71755485387288,
                        "body_type": "moon",
                        "brightness": 0.17018192267508436,
                        "color": "Silvery-gray",
                        "direction": "W low",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "waxing gibbous"
                      },
                      {
                        "altitude": 34.26003424464814,
                        "body_type": "moon",
                        "brightness": 0.0970117241805488,
                        "color": "Deep violet-brown",
                        "direction": "SW mid",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 21.45358667751367,
                        "body_type": "planet",
                        "brightness": 0.14082109928053374,
                        "color": "Rusty blood-red",
                        "direction": "SE mid",
                        "name": {
                          "id": "thurnak",
                          "label": "Thurnak"
                        },
                        "phase": "last quarter"
                      },
                      {
                        "altitude": 10.78521594655143,
                        "body_type": "planet",
                        "brightness": 0.49616305333223504,
                        "color": "Banded cream and tawny",
                        "direction": "SE low",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 29.75664497236241,
                        "body_type": "planet",
                        "brightness": 0.44878473692828286,
                        "color": "Pale wheat-gold",
                        "direction": "S mid",
                        "name": {
                          "id": "kreetha",
                          "label": "Kreetha"
                        },
                        "phase": "last quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 144000,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "17:00:00",
                    "bodies_up": [
                      {
                        "altitude": 17.086823219946677,
                        "body_type": "moon",
                        "brightness": 0.12925795397242515,
                        "color": "Pale gray-blue",
                        "direction": "W low",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 6.940413814094383,
                        "body_type": "moon",
                        "brightness": 0.01902020766138438,
                        "color": "Rust-brown",
                        "direction": "SE low",
                        "name": {
                          "id": "jembor",
                          "label": "Jembor"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 24.313443560951466,
                        "body_type": "moon",
                        "brightness": 0.09692426166536434,
                        "color": "Deep violet-brown",
                        "direction": "SW mid",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 28.366897975338652,
                        "body_type": "planet",
                        "brightness": 0.1408191009948296,
                        "color": "Rusty blood-red",
                        "direction": "SE mid",
                        "name": {
                          "id": "thurnak",
                          "label": "Thurnak"
                        },
                        "phase": "last quarter"
                      },
                      {
                        "altitude": 19.789486696779463,
                        "body_type": "planet",
                        "brightness": 0.49616096797130027,
                        "color": "Banded cream and tawny",
                        "direction": "SE low",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 32.44042174599497,
                        "body_type": "planet",
                        "brightness": 0.44878509197753835,
                        "color": "Pale wheat-gold",
                        "direction": "S mid",
                        "name": {
                          "id": "kreetha",
                          "label": "Kreetha"
                        },
                        "phase": "last quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 147600,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "18:00:00",
                    "bodies_up": [
                      {
                        "altitude": 5.442077692944738,
                        "body_type": "moon",
                        "brightness": 0.1291868193365553,
                        "color": "Pale gray-blue",
                        "direction": "W low",
                        "name": {
                          "id": "endor",
                          "label": "Endor"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 16.49413754237057,
                        "body_type": "moon",
                        "brightness": 0.018840281088825173,
                        "color": "Rust-brown",
                        "direction": "SE low",
                        "name": {
                          "id": "jembor",
                          "label": "Jembor"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 13.265593878717484,
                        "body_type": "moon",
                        "brightness": 0.09683557818310395,
                        "color": "Deep violet-brown",
                        "direction": "W low",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 32.55332707390866,
                        "body_type": "planet",
                        "brightness": 0.14081710603721675,
                        "color": "Rusty blood-red",
                        "direction": "S mid",
                        "name": {
                          "id": "thurnak",
                          "label": "Thurnak"
                        },
                        "phase": "last quarter"
                      },
                      {
                        "altitude": 26.884522210994884,
                        "body_type": "planet",
                        "brightness": 0.496158884696026,
                        "color": "Banded cream and tawny",
                        "direction": "SE mid",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 31.68128268497799,
                        "body_type": "planet",
                        "brightness": 0.4487854482199315,
                        "color": "Pale wheat-gold",
                        "direction": "S mid",
                        "name": {
                          "id": "kreetha",
                          "label": "Kreetha"
                        },
                        "phase": "last quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 151200,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "19:00:00",
                    "bodies_up": [
                      {
                        "altitude": 24.49701744919346,
                        "body_type": "moon",
                        "brightness": 0.018661050961864444,
                        "color": "Rust-brown",
                        "direction": "SE mid",
                        "name": {
                          "id": "jembor",
                          "label": "Jembor"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 1.604764595973735,
                        "body_type": "moon",
                        "brightness": 0.09674567604130771,
                        "color": "Deep violet-brown",
                        "direction": "W low",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "full"
                      },
                      {
                        "altitude": 33.39282007130395,
                        "body_type": "planet",
                        "brightness": 0.14081511441091885,
                        "color": "Rusty blood-red",
                        "direction": "S mid",
                        "name": {
                          "id": "thurnak",
                          "label": "Thurnak"
                        },
                        "phase": "last quarter"
                      },
                      {
                        "altitude": 31.350796872918792,
                        "body_type": "planet",
                        "brightness": 0.49615680351012614,
                        "color": "Banded cream and tawny",
                        "direction": "S mid",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 27.606488044248746,
                        "body_type": "planet",
                        "brightness": 0.44878580565500986,
                        "color": "Pale wheat-gold",
                        "direction": "SW mid",
                        "name": {
                          "id": "kreetha",
                          "label": "Kreetha"
                        },
                        "phase": "last quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 154800,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "20:00:00",
                    "bodies_up": [
                      {
                        "altitude": 30.29487092992521,
                        "body_type": "moon",
                        "brightness": 0.01848252031317672,
                        "color": "Rust-brown",
                        "direction": "S mid",
                        "name": {
                          "id": "jembor",
                          "label": "Jembor"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 30.740886830773963,
                        "body_type": "planet",
                        "brightness": 0.14081312611916183,
                        "color": "Rusty blood-red",
                        "direction": "S mid",
                        "name": {
                          "id": "thurnak",
                          "label": "Thurnak"
                        },
                        "phase": "last quarter"
                      },
                      {
                        "altitude": 32.55965275246777,
                        "body_type": "planet",
                        "brightness": 0.49615472441731434,
                        "color": "Banded cream and tawny",
                        "direction": "S mid",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 20.808244698274173,
                        "body_type": "planet",
                        "brightness": 0.4487861642823179,
                        "color": "Pale wheat-gold",
                        "direction": "SW mid",
                        "name": {
                          "id": "kreetha",
                          "label": "Kreetha"
                        },
                        "phase": "last quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 158400,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "21:00:00",
                    "bodies_up": [
                      {
                        "altitude": 7.104294373177111,
                        "body_type": "moon",
                        "brightness": 0.07117333513392837,
                        "color": "Bright ivory",
                        "direction": "E low",
                        "name": {
                          "id": "lelako",
                          "label": "Lelako"
                        },
                        "phase": "waxing crescent"
                      },
                      {
                        "altitude": 33.191216191560706,
                        "body_type": "moon",
                        "brightness": 0.01830469216360109,
                        "color": "Rust-brown",
                        "direction": "S mid",
                        "name": {
                          "id": "jembor",
                          "label": "Jembor"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 25.02974658604257,
                        "body_type": "planet",
                        "brightness": 0.1408111411651742,
                        "color": "Rusty blood-red",
                        "direction": "SW mid",
                        "name": {
                          "id": "thurnak",
                          "label": "Thurnak"
                        },
                        "phase": "last quarter"
                      },
                      {
                        "altitude": 30.309953855177564,
                        "body_type": "planet",
                        "brightness": 0.4961526474213028,
                        "color": "Banded cream and tawny",
                        "direction": "S mid",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 12.010969163973044,
                        "body_type": "planet",
                        "brightness": 0.4487865241013977,
                        "color": "Pale wheat-gold",
                        "direction": "SW low",
                        "name": {
                          "id": "kreetha",
                          "label": "Kreetha"
                        },
                        "phase": "last quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 162000,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "22:00:00",
                    "bodies_up": [
                      {
                        "altitude": 17.754108062559013,
                        "body_type": "moon",
                        "brightness": 0.07442177734539289,
                        "color": "Bright ivory",
                        "direction": "E low",
                        "name": {
                          "id": "lelako",
                          "label": "Lelako"
                        },
                        "phase": "waxing crescent"
                      },
                      {
                        "altitude": 32.73619892451556,
                        "body_type": "moon",
                        "brightness": 0.01812756952208981,
                        "color": "Rust-brown",
                        "direction": "S mid",
                        "name": {
                          "id": "jembor",
                          "label": "Jembor"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 16.986974823451913,
                        "body_type": "planet",
                        "brightness": 0.14080915955218676,
                        "color": "Rusty blood-red",
                        "direction": "SW low",
                        "name": {
                          "id": "thurnak",
                          "label": "Thurnak"
                        },
                        "phase": "last quarter"
                      },
                      {
                        "altitude": 24.96458235234674,
                        "body_type": "planet",
                        "brightness": 0.4961505725258031,
                        "color": "Banded cream and tawny",
                        "direction": "SW mid",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "waning crescent"
                      },
                      {
                        "altitude": 1.833521572885932,
                        "body_type": "planet",
                        "brightness": 0.4487868851117885,
                        "color": "Pale wheat-gold",
                        "direction": "SW low",
                        "name": {
                          "id": "kreetha",
                          "label": "Kreetha"
                        },
                        "phase": "last quarter"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 165600,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 2,
                    "astro_time": "23:00:00",
                    "bodies_up": [
                      {
                        "altitude": 28.721248709659744,
                        "body_type": "moon",
                        "brightness": 0.07772281762420978,
                        "color": "Bright ivory",
                        "direction": "E mid",
                        "name": {
                          "id": "lelako",
                          "label": "Lelako"
                        },
                        "phase": "waxing crescent"
                      },
                      {
                        "altitude": 2.336593561513346,
                        "body_type": "planet",
                        "brightness": 0.23850342651700995,
                        "color": "Warm amber, hazy rim",
                        "direction": "NE low",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 7.310451337354112,
                        "body_type": "planet",
                        "brightness": 0.14080718128343275,
                        "color": "Rusty blood-red",
                        "direction": "SW low",
                        "name": {
                          "id": "thurnak",
                          "label": "Thurnak"
                        },
                        "phase": "last quarter"
                      },
                      {
                        "altitude": 17.214149360049642,
                        "body_type": "planet",
                        "brightness": 0.4961484997345256,
                        "color": "Banded cream and tawny",
                        "direction": "SW low",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "waning crescent"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 169200,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "The Winged Pollinator"
                    },
                    "astro_day": 3,
                    "astro_time": "00:00:00",
                    "bodies_up": [
                      {
                        "altitude": 39.86368972540264,
                        "body_type": "moon",
                        "brightness": 0.08107472966885634,
                        "color": "Bright ivory",
                        "direction": "E mid",
                        "name": {
                          "id": "lelako",
                          "label": "Lelako"
                        },
                        "phase": "waxing crescent"
                      },
                      {
                        "altitude": 13.867957467524745,
                        "body_type": "planet",
                        "brightness": 0.2385058943169216,
                        "color": "Warm amber, hazy rim",
                        "direction": "E low",
                        "name": {
                          "id": "dramond",
                          "label": "Dramond"
                        },
                        "phase": "first quarter"
                      },
                      {
                        "altitude": 7.754161719717311,
                        "body_type": "planet",
                        "brightness": 0.4961464290511802,
                        "color": "Banded cream and tawny",
                        "direction": "SW low",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "waning crescent"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "The Watchers of Stillness"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "The Chain of Four"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 3,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "Endor"
                        },
                        {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 172800,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilyrun"
                        },
                        "position": "The Pole Star, unwavering in the true north."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "To the left of Ilyrun, rising and dipping like a kettle."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "Marnok"
                        },
                        "position": "Below Ilyrun, clawing at the trees of the high north."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Sethera"
                        },
                        "position": "To the right of Ilyrun, where wanderers seem to gather."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "In the east, just above the sowing fields."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "Tursin"
                        },
                        "position": "In the northeast, halfway to the pole star."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "In the west-northwest, between the Split Peaks."
                      }
                    ]
                  }
                ]
              }
            },
            "summary": {
              "end_pulse": 172800,
              "start_pulse": 86400,
              "step_count": 25
            }
          }
        },
        "localized": {
          "request": "/ephemeris?start_pulse=86400&step_minutes=60&duration_days=1&format=json&locale=es-ES",
          "status": 200,
          "body": {
            "parameters": {
              "end": {
                "astro_day": 3,
                "astro_time": "00:00:00",
                "fatunik_date": {
                  "calendar_id": "fatunik",
                  "day": 1,
                  "month": 11,
                  "year": -1531
                },
                "orbital_position": 0.005475818511661577,
                "pulse": 172800,
                "terpin_date": {
                  "calendar_id": "terpin",
                  "day": 1,
                  "month": 2,
                  "year": -1042
                }
              },
              "profile": "scribal",
              "start": {
                "astro_day": 2,
                "astro_time": "00:00:00",
                "fatunik_date": {
                  "calendar_id": "fatunik",
                  "day": 30,
                  "month": 10,
                  "year": -1531
                },
                "orbital_position": 0.0027379092558307886,
                "pulse": 86400,
                "terpin_date": {
                  "calendar_id": "terpin",
                  "day": 5,
                  "month": 1,
                  "year": -1042
                }
              },
              "step_minutes": 60,
              "step_pulses": 3600
            },
            "series": {
              "kinematic": null,
              "scribal": {
                "days": {
                  "2": {
                    "body_rise_transit_set": {
                      "aesthra": {
                        "rise": 66576,
                        "set": 110424,
                        "transit": 88500
                      },
                      "beyarus": {
                        "rise": 57721,
                        "set": 96911,
                        "transit": 77316
                      },
                      "calumbra": {
                        "rise": 97854,
                        "set": 144682,
                        "transit": 121268
                      },
                      "dramond": {
                        "rise": 81884,
                        "set": 132228,
                        "transit": 107056
                      },
                      "endor": {
                        "rise": 22387,
                        "set": 65227,
                        "transit": 43807
                      },
                      "jembor": {
                        "rise": 57982,
                        "set": 92772,
                        "transit": 75377
                      },
                      "kanka": {
                        "rise": 26168,
                        "set": 67720,
                        "transit": 46944
                      },
                      "kreetha": {
                        "rise": 44619,
                        "set": 79809,
                        "transit": 62214
                      },
                      "lelako": {
                        "rise": 68352,
                        "set": 116046,
                        "transit": 92199
                      },
                      "lethra": {
                        "rise": 62121,
                        "set": 103907,
                        "transit": 83014
                      },
                      "sella": {
                        "rise": 92044,
                        "set": 141566,
                        "transit": 116805
                      },
                      "shunna": {
                        "rise": 82779,
                        "set": 133549,
                        "transit": 108164
                      },
                      "thurnak": {
                        "rise": 49551,
                        "set": 85125,
                        "transit": 67338
                      },
                      "zehembra": {
                        "rise": 57630,
                        "set": 94976,
                        "transit": 76303
                      },
                      "zelven": {
                        "rise": 53826,
                        "set": 89010,
                        "transit": 71418
                      }
                    },
                    "season": {
                      "id": "greening",
                      "label": "Reverdecer"
                    }
                  },
                  "3": {
                    "body_rise_transit_set": {
                      "aesthra": {
                        "rise": 153259,
                        "set": 197345,
                        "transit": 175302
                      },
                      "beyarus": {
                        "rise": 144237,
                        "set": 183457,
                        "transit": 163847
                      },
                      "calumbra": {
                        "rise": 188762,
                        "set": 233908,
                        "transit": 211335
                      },
                      "dramond": {
                        "rise": 168455,
                        "set": 218837,
                        "transit": 193646
                      },
                      "endor": {
                        "rise": 111903,
                        "set": 153217,
                        "transit": 132560
                      },
                      "jembor": {
                        "rise": 145589,
                        "set": 181221,
                        "transit": 163405
                      },
                      "kanka": {
                        "rise": 114821,
                        "set": 155585,
                        "transit": 135203
                      },
                      "kreetha": {
                        "rise": 131023,
                        "set": 166211,
                        "transit": 148617
                      },
                      "lelako": {
                        "rise": 160512,
                        "set": 212236,
                        "transit": 186374
                      },
                      "lethra": {
                        "rise": 148410,
                        "set": 190264,
                        "transit": 169337
                      },
                      "sella": {
                        "rise": 182384,
                        "set": 230220,
                        "transit": 206302
                      },
                      "shunna": {
                        "rise": 175179,
                        "set": 225179,
                        "transit": 200179
                      },
                      "thurnak": {
                        "rise": 136100,
                        "set": 171674,
                        "transit": 153887
                      },
                      "zehembra": {
                        "rise": 147375,
                        "set": 186951,
                        "transit": 167163
                      },
                      "zelven": {
                        "rise": 140255,
                        "set": 175455,
                        "transit": 157855
                      }
                    },
                    "season": {
                      "id": "greening",
                      "label": "Reverdecer"
                    }
                  }
                },
                "steps": [
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "00:00:00",
                    "bodies_up": [
                      {
                        "altitude": 17.216475102845333,
                        "body_type": "moon",
                        "brightness": 0.022182520621395956,
                        "color": "Marr\u00f3n \u00f3xido",
                        "direction": "SO bajo",
                        "name": {
                          "id": "jembor",
                          "label": "Dj\u00e9mbor"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 24.500250524126162,
                        "body_type": "moon",
                        "brightness": 0.033050460149444905,
                        "color": "Blanco dorado",
                        "direction": "SO medio",
                        "name": {
                          "id": "zehembra",
                          "label": "Zehembra"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 11.405832170997172,
                        "body_type": "moon",
                        "brightness": 0.1987908510739541,
                        "color": "Destello azul hielo",
                        "direction": "E bajo",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 14.438893936723328,
                        "body_type": "planet",
                        "brightness": 0.23844786907058346,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "E bajo",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 7.623282550878364,
                        "body_type": "planet",
                        "brightness": 0.49619669972272573,
                        "color": "Bandas de crema y leonado",
                        "direction": "SO bajo",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 86400,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "01:00:00",
                    "bodies_up": [
                      {
                        "altitude": 8.21692726403999,
                        "body_type": "moon",
                        "brightness": 0.021991229689859473,
                        "color": "Marr\u00f3n \u00f3xido",
                        "direction": "SO bajo",
                        "name": {
                          "id": "jembor",
                          "label": "Dj\u00e9mbor"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 22.46792408763752,
                        "body_type": "moon",
                        "brightness": 0.20185972274051722,
                        "color": "Destello azul hielo",
                        "direction": "E medio",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 26.423367922249454,
                        "body_type": "planet",
                        "brightness": 0.2384502364219837,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "E medio",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 90000,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "02:00:00",
                    "bodies_up": [
                      {
                        "altitude": 3.90859911794308,
                        "body_type": "moon",
                        "brightness": 0.15696750581119032,
                        "color": "Bronce ceniciento",
                        "direction": "E bajo",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 33.78852811252247,
                        "body_type": "moon",
                        "brightness": 0.20492815653544386,
                        "color": "Destello azul hielo",
                        "direction": "E medio",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 38.59460159730249,
                        "body_type": "planet",
                        "brightness": 0.2384526081781082,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "E medio",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 93600,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "03:00:00",
                    "bodies_up": [
                      {
                        "altitude": 15.193642417838126,
                        "body_type": "moon",
                        "brightness": 0.1576944939474477,
                        "color": "Bronce ceniciento",
                        "direction": "E bajo",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 45.17705583065096,
                        "body_type": "moon",
                        "brightness": 0.20799542999613344,
                        "color": "Destello azul hielo",
                        "direction": "E medio",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 50.68148679108409,
                        "body_type": "planet",
                        "brightness": 0.23845498433553738,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "E medio",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 97200,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "04:00:00",
                    "bodies_up": [
                      {
                        "altitude": 26.78506261723942,
                        "body_type": "moon",
                        "brightness": 0.15841693988183014,
                        "color": "Bronce ceniciento",
                        "direction": "E medio",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 7.3452995921287805,
                        "body_type": "moon",
                        "brightness": 0.1642168455775006,
                        "color": "Gris plateado",
                        "direction": "E bajo",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 56.357761334162426,
                        "body_type": "moon",
                        "brightness": 0.21106082093318604,
                        "color": "Destello azul hielo",
                        "direction": "E alto",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 62.16886754883491,
                        "body_type": "planet",
                        "brightness": 0.23845736489085448,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "SE alto",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 100800,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "05:00:00",
                    "bodies_up": [
                      {
                        "altitude": 38.44653223509629,
                        "body_type": "moon",
                        "brightness": 0.15913478673724157,
                        "color": "Bronce ceniciento",
                        "direction": "E medio",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 18.908884138175395,
                        "body_type": "moon",
                        "brightness": 0.1647631511634104,
                        "color": "Gris plateado",
                        "direction": "E bajo",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 66.69917042765462,
                        "body_type": "moon",
                        "brightness": 0.21412360760044202,
                        "color": "Destello azul hielo",
                        "direction": "SE alto",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 71.50945445549304,
                        "body_type": "planet",
                        "brightness": 0.23845974984064555,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "SE alto",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 104400,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "06:00:00",
                    "bodies_up": [
                      {
                        "altitude": 49.86313125460202,
                        "body_type": "moon",
                        "brightness": 0.1598479779986645,
                        "color": "Bronce ceniciento",
                        "direction": "E medio",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 30.413290122109494,
                        "body_type": "moon",
                        "brightness": 0.16530071023184567,
                        "color": "Gris plateado",
                        "direction": "E medio",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 74.13648258344205,
                        "body_type": "moon",
                        "brightness": 0.2171830688649167,
                        "color": "Destello azul hielo",
                        "direction": "SE alto",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 74.03723973496173,
                        "body_type": "planet",
                        "brightness": 0.23846213918149958,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "S alto",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 108000,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "07:00:00",
                    "bodies_up": [
                      {
                        "altitude": 6.438770951086215,
                        "body_type": "moon",
                        "brightness": 0.1297907263309484,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "E bajo",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 60.41170625712478,
                        "body_type": "moon",
                        "brightness": 0.1605564575176095,
                        "color": "Bronce ceniciento",
                        "direction": "SE alto",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 41.51571181912582,
                        "body_type": "moon",
                        "brightness": 0.16582945989394068,
                        "color": "Gris plateado",
                        "direction": "E medio",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 73.80046691107358,
                        "body_type": "moon",
                        "brightness": 0.22023848437659155,
                        "color": "Destello azul hielo",
                        "direction": "SO alto",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 67.31516704893346,
                        "body_type": "planet",
                        "brightness": 0.23846453291000824,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "SO alto",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 111600,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "08:00:00",
                    "bodies_up": [
                      {
                        "altitude": 17.93606154727275,
                        "body_type": "moon",
                        "brightness": 0.1297521011915548,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "E bajo",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 68.46583600184482,
                        "body_type": "moon",
                        "brightness": 0.16126016951653557,
                        "color": "Bronce ceniciento",
                        "direction": "SE alto",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 51.61817192252046,
                        "body_type": "moon",
                        "brightness": 0.1663493382914391,
                        "color": "Gris plateado",
                        "direction": "SE medio",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 66.00952777739104,
                        "body_type": "moon",
                        "brightness": 0.22328913473802028,
                        "color": "Destello azul hielo",
                        "direction": "SO alto",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 6.300128367350278,
                        "body_type": "moon",
                        "brightness": 0.09766720309339993,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "E bajo",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 56.575521195674206,
                        "body_type": "planet",
                        "brightness": 0.23846693102276628,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "O alto",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 115200,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "09:00:00",
                    "bodies_up": [
                      {
                        "altitude": 28.828354764118707,
                        "body_type": "moon",
                        "brightness": 0.12971021363703322,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "SE medio",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 70.43610512786086,
                        "body_type": "moon",
                        "brightness": 0.16195905859324156,
                        "color": "Bronce ceniciento",
                        "direction": "S alto",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 59.50682043865376,
                        "body_type": "moon",
                        "brightness": 0.16686028460393126,
                        "color": "Gris plateado",
                        "direction": "SE alto",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 55.54513882790312,
                        "body_type": "moon",
                        "brightness": 0.22633430167371082,
                        "color": "Destello azul hielo",
                        "direction": "O alto",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 17.717345317409492,
                        "body_type": "moon",
                        "brightness": 0.09758958756169678,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "E bajo",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 44.695235549288014,
                        "body_type": "planet",
                        "brightness": 0.238469333516371,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "O medio",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 118800,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "10:00:00",
                    "bodies_up": [
                      {
                        "altitude": 38.5706194167598,
                        "body_type": "moon",
                        "brightness": 0.1296650657778108,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "SE medio",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 64.7999479597534,
                        "body_type": "moon",
                        "brightness": 0.16265306972522775,
                        "color": "Bronce ceniciento",
                        "direction": "SO alto",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 63.02195942475575,
                        "body_type": "moon",
                        "brightness": 0.1673622390559692,
                        "color": "Gris plateado",
                        "direction": "S alto",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 44.29838608522534,
                        "body_type": "moon",
                        "brightness": 0.22937326819924386,
                        "color": "Destello azul hielo",
                        "direction": "O medio",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 28.37525275413717,
                        "body_type": "moon",
                        "brightness": 0.09751073375116928,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "SE medio",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 32.52863737792266,
                        "body_type": "planet",
                        "brightness": 0.23847174038742272,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "O medio",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 122400,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "11:00:00",
                    "bodies_up": [
                      {
                        "altitude": 46.26976252621023,
                        "body_type": "moon",
                        "brightness": 0.12961665988857915,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "SE medio",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 55.08805302062767,
                        "body_type": "moon",
                        "brightness": 0.16334214827402785,
                        "color": "Bronce ceniciento",
                        "direction": "SO alto",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 60.49784084611553,
                        "body_type": "moon",
                        "brightness": 0.16785514292405984,
                        "color": "Gris plateado",
                        "direction": "SO alto",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 32.854942792297706,
                        "body_type": "moon",
                        "brightness": 0.2324053187900859,
                        "color": "Destello azul hielo",
                        "direction": "O medio",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 37.68327923537604,
                        "body_type": "moon",
                        "brightness": 0.09743064371358984,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "SE medio",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 20.42679018418058,
                        "body_type": "planet",
                        "brightness": 0.23847415163252447,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "O medio",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 126000,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "12:00:00",
                    "bodies_up": [
                      {
                        "altitude": 50.62915359302543,
                        "body_type": "moon",
                        "brightness": 0.12956499840817962,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "S medio",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 43.87239366138772,
                        "body_type": "moon",
                        "brightness": 0.1640262399895105,
                        "color": "Bronce ceniciento",
                        "direction": "O medio",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 53.15696410438334,
                        "body_type": "moon",
                        "brightness": 0.16833893854353518,
                        "color": "Gris plateado",
                        "direction": "SO medio",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 21.47732176379786,
                        "body_type": "moon",
                        "brightness": 0.2354297395500604,
                        "color": "Destello azul hielo",
                        "direction": "O medio",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 44.71239407404468,
                        "body_type": "moon",
                        "brightness": 0.09734931953289748,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "SE medio",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 8.627551999038202,
                        "body_type": "planet",
                        "brightness": 0.23847656724828215,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "O bajo",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 129600,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "13:00:00",
                    "bodies_up": [
                      {
                        "altitude": 50.48726991955139,
                        "body_type": "moon",
                        "brightness": 0.12951008393948066,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "S medio",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 32.12367871617189,
                        "body_type": "moon",
                        "brightness": 0.16470529101415032,
                        "color": "Bronce ceniciento",
                        "direction": "O medio",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 43.25258497252243,
                        "body_type": "moon",
                        "brightness": 0.16881356931529823,
                        "color": "Gris plateado",
                        "direction": "SO medio",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 10.351375409892258,
                        "body_type": "moon",
                        "brightness": 0.23844581837943402,
                        "color": "Destello azul hielo",
                        "direction": "O bajo",
                        "name": {
                          "id": "shunna",
                          "label": "Shuna"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 48.239434434801225,
                        "body_type": "moon",
                        "brightness": 0.09726676332514353,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "S medio",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 6.400371946288762,
                        "body_type": "planet",
                        "brightness": 0.4487836789438312,
                        "color": "Dorado trigo p\u00e1lido",
                        "direction": "SE bajo",
                        "name": {
                          "id": "kreetha",
                          "label": "Krita"
                        },
                        "phase": "cuarto menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 133200,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "14:00:00",
                    "bodies_up": [
                      {
                        "altitude": 45.880143267627744,
                        "body_type": "moon",
                        "brightness": 0.12945191924924632,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "SO medio",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 20.2529834318849,
                        "body_type": "moon",
                        "brightness": 0.1653792478872679,
                        "color": "Bronce ceniciento",
                        "direction": "O medio",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 32.15196877401353,
                        "body_type": "moon",
                        "brightness": 0.1692789797124447,
                        "color": "Gris plateado",
                        "direction": "O medio",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 47.361717492051135,
                        "body_type": "moon",
                        "brightness": 0.09718297723843664,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "S medio",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 2.302089346879089,
                        "body_type": "planet",
                        "brightness": 0.14082510582333338,
                        "color": "Rojo sangre oxidado",
                        "direction": "SE bajo",
                        "name": {
                          "id": "thurnak",
                          "label": "T\u00farnak"
                        },
                        "phase": "cuarto menguante"
                      },
                      {
                        "altitude": 16.042423560443236,
                        "body_type": "planet",
                        "brightness": 0.4487840304109832,
                        "color": "Dorado trigo p\u00e1lido",
                        "direction": "SE bajo",
                        "name": {
                          "id": "kreetha",
                          "label": "Krita"
                        },
                        "phase": "cuarto menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 136800,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "15:00:00",
                    "bodies_up": [
                      {
                        "altitude": 37.99715078793735,
                        "body_type": "moon",
                        "brightness": 0.12939050726799725,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "SO medio",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 8.506394619995287,
                        "body_type": "moon",
                        "brightness": 0.16604805754923913,
                        "color": "Bronce ceniciento",
                        "direction": "O bajo",
                        "name": {
                          "id": "sella",
                          "label": "Sela"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 20.52068798742366,
                        "body_type": "moon",
                        "brightness": 0.16973511528675908,
                        "color": "Gris plateado",
                        "direction": "O medio",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 42.3228811700807,
                        "body_type": "moon",
                        "brightness": 0.09709796345288685,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "SO medio",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 12.5567577216814,
                        "body_type": "planet",
                        "brightness": 0.14082310089110792,
                        "color": "Rojo sangre oxidado",
                        "direction": "SE bajo",
                        "name": {
                          "id": "thurnak",
                          "label": "T\u00farnak"
                        },
                        "phase": "cuarto menguante"
                      },
                      {
                        "altitude": 0.4694102171638218,
                        "body_type": "planet",
                        "brightness": 0.49616514077511487,
                        "color": "Bandas de crema y leonado",
                        "direction": "SE bajo",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 24.054860951615428,
                        "body_type": "planet",
                        "brightness": 0.44878438307261537,
                        "color": "Dorado trigo p\u00e1lido",
                        "direction": "SE medio",
                        "name": {
                          "id": "kreetha",
                          "label": "Krita"
                        },
                        "phase": "cuarto menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 140400,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "16:00:00",
                    "bodies_up": [
                      {
                        "altitude": 28.111876863460527,
                        "body_type": "moon",
                        "brightness": 0.12932585108986278,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "SO medio",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 8.71755485387288,
                        "body_type": "moon",
                        "brightness": 0.17018192267508436,
                        "color": "Gris plateado",
                        "direction": "O bajo",
                        "name": {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        "phase": "gibosa creciente"
                      },
                      {
                        "altitude": 34.26003424464814,
                        "body_type": "moon",
                        "brightness": 0.0970117241805488,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "SO medio",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 21.45358667751367,
                        "body_type": "planet",
                        "brightness": 0.14082109928053374,
                        "color": "Rojo sangre oxidado",
                        "direction": "SE medio",
                        "name": {
                          "id": "thurnak",
                          "label": "T\u00farnak"
                        },
                        "phase": "cuarto menguante"
                      },
                      {
                        "altitude": 10.78521594655143,
                        "body_type": "planet",
                        "brightness": 0.49616305333223504,
                        "color": "Bandas de crema y leonado",
                        "direction": "SE bajo",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 29.75664497236241,
                        "body_type": "planet",
                        "brightness": 0.44878473692828286,
                        "color": "Dorado trigo p\u00e1lido",
                        "direction": "S medio",
                        "name": {
                          "id": "kreetha",
                          "label": "Krita"
                        },
                        "phase": "cuarto menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 144000,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "17:00:00",
                    "bodies_up": [
                      {
                        "altitude": 17.086823219946677,
                        "body_type": "moon",
                        "brightness": 0.12925795397242515,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "O bajo",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 6.940413814094383,
                        "body_type": "moon",
                        "brightness": 0.01902020766138438,
                        "color": "Marr\u00f3n \u00f3xido",
                        "direction": "SE bajo",
                        "name": {
                          "id": "jembor",
                          "label": "Dj\u00e9mbor"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 24.313443560951466,
                        "body_type": "moon",
                        "brightness": 0.09692426166536434,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "SO medio",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 28.366897975338652,
                        "body_type": "planet",
                        "brightness": 0.1408191009948296,
                        "color": "Rojo sangre oxidado",
                        "direction": "SE medio",
                        "name": {
                          "id": "thurnak",
                          "label": "T\u00farnak"
                        },
                        "phase": "cuarto menguante"
                      },
                      {
                        "altitude": 19.789486696779463,
                        "body_type": "planet",
                        "brightness": 0.49616096797130027,
                        "color": "Bandas de crema y leonado",
                        "direction": "SE bajo",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 32.44042174599497,
                        "body_type": "planet",
                        "brightness": 0.44878509197753835,
                        "color": "Dorado trigo p\u00e1lido",
                        "direction": "S medio",
                        "name": {
                          "id": "kreetha",
                          "label": "Krita"
                        },
                        "phase": "cuarto menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 147600,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "18:00:00",
                    "bodies_up": [
                      {
                        "altitude": 5.442077692944738,
                        "body_type": "moon",
                        "brightness": 0.1291868193365553,
                        "color": "Gris azulado p\u00e1lido",
                        "direction": "O bajo",
                        "name": {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 16.49413754237057,
                        "body_type": "moon",
                        "brightness": 0.018840281088825173,
                        "color": "Marr\u00f3n \u00f3xido",
                        "direction": "SE bajo",
                        "name": {
                          "id": "jembor",
                          "label": "Dj\u00e9mbor"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 13.265593878717484,
                        "body_type": "moon",
                        "brightness": 0.09683557818310395,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "O bajo",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 32.55332707390866,
                        "body_type": "planet",
                        "brightness": 0.14081710603721675,
                        "color": "Rojo sangre oxidado",
                        "direction": "S medio",
                        "name": {
                          "id": "thurnak",
                          "label": "T\u00farnak"
                        },
                        "phase": "cuarto menguante"
                      },
                      {
                        "altitude": 26.884522210994884,
                        "body_type": "planet",
                        "brightness": 0.496158884696026,
                        "color": "Bandas de crema y leonado",
                        "direction": "SE medio",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 31.68128268497799,
                        "body_type": "planet",
                        "brightness": 0.4487854482199315,
                        "color": "Dorado trigo p\u00e1lido",
                        "direction": "S medio",
                        "name": {
                          "id": "kreetha",
                          "label": "Krita"
                        },
                        "phase": "cuarto menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 151200,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "19:00:00",
                    "bodies_up": [
                      {
                        "altitude": 24.49701744919346,
                        "body_type": "moon",
                        "brightness": 0.018661050961864444,
                        "color": "Marr\u00f3n \u00f3xido",
                        "direction": "SE medio",
                        "name": {
                          "id": "jembor",
                          "label": "Dj\u00e9mbor"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 1.604764595973735,
                        "body_type": "moon",
                        "brightness": 0.09674567604130771,
                        "color": "Marr\u00f3n viol\u00e1ceo oscuro",
                        "direction": "O bajo",
                        "name": {
                          "id": "kanka",
                          "label": "Kanka"
                        },
                        "phase": "llena"
                      },
                      {
                        "altitude": 33.39282007130395,
                        "body_type": "planet",
                        "brightness": 0.14081511441091885,
                        "color": "Rojo sangre oxidado",
                        "direction": "S medio",
                        "name": {
                          "id": "thurnak",
                          "label": "T\u00farnak"
                        },
                        "phase": "cuarto menguante"
                      },
                      {
                        "altitude": 31.350796872918792,
                        "body_type": "planet",
                        "brightness": 0.49615680351012614,
                        "color": "Bandas de crema y leonado",
                        "direction": "S medio",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 27.606488044248746,
                        "body_type": "planet",
                        "brightness": 0.44878580565500986,
                        "color": "Dorado trigo p\u00e1lido",
                        "direction": "SO medio",
                        "name": {
                          "id": "kreetha",
                          "label": "Krita"
                        },
                        "phase": "cuarto menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 154800,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "20:00:00",
                    "bodies_up": [
                      {
                        "altitude": 30.29487092992521,
                        "body_type": "moon",
                        "brightness": 0.01848252031317672,
                        "color": "Marr\u00f3n \u00f3xido",
                        "direction": "S medio",
                        "name": {
                          "id": "jembor",
                          "label": "Dj\u00e9mbor"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 30.740886830773963,
                        "body_type": "planet",
                        "brightness": 0.14081312611916183,
                        "color": "Rojo sangre oxidado",
                        "direction": "S medio",
                        "name": {
                          "id": "thurnak",
                          "label": "T\u00farnak"
                        },
                        "phase": "cuarto menguante"
                      },
                      {
                        "altitude": 32.55965275246777,
                        "body_type": "planet",
                        "brightness": 0.49615472441731434,
                        "color": "Bandas de crema y leonado",
                        "direction": "S medio",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 20.808244698274173,
                        "body_type": "planet",
                        "brightness": 0.4487861642823179,
                        "color": "Dorado trigo p\u00e1lido",
                        "direction": "SO medio",
                        "name": {
                          "id": "kreetha",
                          "label": "Krita"
                        },
                        "phase": "cuarto menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 158400,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "21:00:00",
                    "bodies_up": [
                      {
                        "altitude": 7.104294373177111,
                        "body_type": "moon",
                        "brightness": 0.07117333513392837,
                        "color": "Marfil brillante",
                        "direction": "E bajo",
                        "name": {
                          "id": "lelako",
                          "label": "Lelako"
                        },
                        "phase": "creciente"
                      },
                      {
                        "altitude": 33.191216191560706,
                        "body_type": "moon",
                        "brightness": 0.01830469216360109,
                        "color": "Marr\u00f3n \u00f3xido",
                        "direction": "S medio",
                        "name": {
                          "id": "jembor",
                          "label": "Dj\u00e9mbor"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 25.02974658604257,
                        "body_type": "planet",
                        "brightness": 0.1408111411651742,
                        "color": "Rojo sangre oxidado",
                        "direction": "SO medio",
                        "name": {
                          "id": "thurnak",
                          "label": "T\u00farnak"
                        },
                        "phase": "cuarto menguante"
                      },
                      {
                        "altitude": 30.309953855177564,
                        "body_type": "planet",
                        "brightness": 0.4961526474213028,
                        "color": "Bandas de crema y leonado",
                        "direction": "S medio",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 12.010969163973044,
                        "body_type": "planet",
                        "brightness": 0.4487865241013977,
                        "color": "Dorado trigo p\u00e1lido",
                        "direction": "SO bajo",
                        "name": {
                          "id": "kreetha",
                          "label": "Krita"
                        },
                        "phase": "cuarto menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 162000,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "22:00:00",
                    "bodies_up": [
                      {
                        "altitude": 17.754108062559013,
                        "body_type": "moon",
                        "brightness": 0.07442177734539289,
                        "color": "Marfil brillante",
                        "direction": "E bajo",
                        "name": {
                          "id": "lelako",
                          "label": "Lelako"
                        },
                        "phase": "creciente"
                      },
                      {
                        "altitude": 32.73619892451556,
                        "body_type": "moon",
                        "brightness": 0.01812756952208981,
                        "color": "Marr\u00f3n \u00f3xido",
                        "direction": "S medio",
                        "name": {
                          "id": "jembor",
                          "label": "Dj\u00e9mbor"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 16.986974823451913,
                        "body_type": "planet",
                        "brightness": 0.14080915955218676,
                        "color": "Rojo sangre oxidado",
                        "direction": "SO bajo",
                        "name": {
                          "id": "thurnak",
                          "label": "T\u00farnak"
                        },
                        "phase": "cuarto menguante"
                      },
                      {
                        "altitude": 24.96458235234674,
                        "body_type": "planet",
                        "brightness": 0.4961505725258031,
                        "color": "Bandas de crema y leonado",
                        "direction": "SO medio",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "menguante"
                      },
                      {
                        "altitude": 1.833521572885932,
                        "body_type": "planet",
                        "brightness": 0.4487868851117885,
                        "color": "Dorado trigo p\u00e1lido",
                        "direction": "SO bajo",
                        "name": {
                          "id": "kreetha",
                          "label": "Krita"
                        },
                        "phase": "cuarto menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 165600,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 2,
                    "astro_time": "23:00:00",
                    "bodies_up": [
                      {
                        "altitude": 28.721248709659744,
                        "body_type": "moon",
                        "brightness": 0.07772281762420978,
                        "color": "Marfil brillante",
                        "direction": "E medio",
                        "name": {
                          "id": "lelako",
                          "label": "Lelako"
                        },
                        "phase": "creciente"
                      },
                      {
                        "altitude": 2.336593561513346,
                        "body_type": "planet",
                        "brightness": 0.23850342651700995,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "NE bajo",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 7.310451337354112,
                        "body_type": "planet",
                        "brightness": 0.14080718128343275,
                        "color": "Rojo sangre oxidado",
                        "direction": "SO bajo",
                        "name": {
                          "id": "thurnak",
                          "label": "T\u00farnak"
                        },
                        "phase": "cuarto menguante"
                      },
                      {
                        "altitude": 17.214149360049642,
                        "body_type": "planet",
                        "brightness": 0.4961484997345256,
                        "color": "Bandas de crema y leonado",
                        "direction": "SO bajo",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 2,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 169200,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  },
                  {
                    "active_house": {
                      "id": "winged_pollinator",
                      "label": "El polinizador alado"
                    },
                    "astro_day": 3,
                    "astro_time": "00:00:00",
                    "bodies_up": [
                      {
                        "altitude": 39.86368972540264,
                        "body_type": "moon",
                        "brightness": 0.08107472966885634,
                        "color": "Marfil brillante",
                        "direction": "E medio",
                        "name": {
                          "id": "lelako",
                          "label": "Lelako"
                        },
                        "phase": "creciente"
                      },
                      {
                        "altitude": 13.867957467524745,
                        "body_type": "planet",
                        "brightness": 0.2385058943169216,
                        "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                        "direction": "E bajo",
                        "name": {
                          "id": "dramond",
                          "label": "Dr\u00e1mun"
                        },
                        "phase": "cuarto creciente"
                      },
                      {
                        "altitude": 7.754161719717311,
                        "body_type": "planet",
                        "brightness": 0.4961464290511802,
                        "color": "Bandas de crema y leonado",
                        "direction": "SO bajo",
                        "name": {
                          "id": "zelven",
                          "label": "Zelven"
                        },
                        "phase": "menguante"
                      }
                    ],
                    "circumpolar_houses": [
                      {
                        "id": "watchers_of_stillness",
                        "label": "Los Vigilantes de la quietud"
                      },
                      {
                        "id": "chain_of_four",
                        "label": "La cadena de los cuatro"
                      }
                    ],
                    "co_fullness_tonight": {
                      "count": 3,
                      "moons": [
                        {
                          "id": "endor",
                          "label": "\u00c9ndor"
                        },
                        {
                          "id": "calumbra",
                          "label": "Calumbra"
                        },
                        {
                          "id": "kanka",
                          "label": "Kanka"
                        }
                      ],
                      "observable": true
                    },
                    "pulse": 172800,
                    "stars_up": [
                      {
                        "name": {
                          "id": "ilyrun",
                          "label": "Ilirun"
                        },
                        "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                      },
                      {
                        "name": {
                          "id": "kresh",
                          "label": "Kresh"
                        },
                        "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                      },
                      {
                        "name": {
                          "id": "marnok",
                          "label": "M\u00e1rnok"
                        },
                        "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                      },
                      {
                        "name": {
                          "id": "sethera",
                          "label": "Setra"
                        },
                        "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                      },
                      {
                        "name": {
                          "id": "thalona",
                          "label": "Thalona"
                        },
                        "position": "En el este, justo sobre los campos de siembra."
                      },
                      {
                        "name": {
                          "id": "tursin",
                          "label": "T\u00farsin"
                        },
                        "position": "En el noreste, a medio camino de la Estrella Polar."
                      },
                      {
                        "name": {
                          "id": "velkora",
                          "label": "Velkora"
                        },
                        "position": "En el oeste-noroeste, entre los Picos Partidos."
                      }
                    ]
                  }
                ]
              }
            },
            "summary": {
              "end_pulse": 172800,
              "start_pulse": 86400,
              "step_count": 25
            }
          }
        },
        "error": {
          "request": "/ephemeris?start_pulse=86400&step_minutes=1&duration_days=1&format=json",
          "status": 400,
          "body": {
            "error": {
              "code": "ephemeris_range_invalid",
              "message": "Rango de efem\u00e9rides inv\u00e1lido: step_pulses 60 is below the minimum of 300 pulses (5 minutes)"
            }
          }
        }
      },
      "throttle": {
        "step_floor_pulses": 300,
        "step_floor_minutes": 5,
        "range_cap_pulses": 2592000,
        "range_cap_days": 30
      }
    },
    "/moons": {
      "description": "Resolves a single moment (via `pulse`, `astro_day` + optional\n`time_of_day`, or a Fatunik/Terpin date) and returns the star Fatune's sky\nposition plus every moon's complete body state and sky position at that\nmoment.",
      "parameters": [],
      "moment_resolution": {
        "prefix": null,
        "priority": [
          "pulse",
          "astro_day",
          "fatunik_date",
          "terpin_date"
        ],
        "branches": {
          "pulse": [
            {
              "name": "pulse",
              "type": "float",
              "required": false,
              "description": "Raw pulse count. Rounded to the nearest integer pulse."
            }
          ],
          "astro_day": [
            {
              "name": "astro_day",
              "type": "int",
              "required": false,
              "description": "1-indexed Astro Day."
            },
            {
              "name": "time_of_day",
              "type": "string",
              "required": false,
              "description": "Civil time-of-day within an Astro Day, paired with astro_day. Range 00:00:00-23:59:59.",
              "constraints": {
                "pattern": "HH:MM:SS"
              }
            }
          ],
          "fatunik_date": [
            {
              "name": "fatunik_year",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar year, paired with fatunik_month and fatunik_day."
            },
            {
              "name": "fatunik_month",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar month, paired with fatunik_year and fatunik_day."
            },
            {
              "name": "fatunik_day",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar day, paired with fatunik_year and fatunik_month."
            }
          ],
          "terpin_date": [
            {
              "name": "terpin_year",
              "type": "int",
              "required": false,
              "description": "Terpin calendar year, paired with terpin_month and terpin_day."
            },
            {
              "name": "terpin_month",
              "type": "int",
              "required": false,
              "description": "Terpin calendar month, paired with terpin_year and terpin_day."
            },
            {
              "name": "terpin_day",
              "type": "int",
              "required": false,
              "description": "Terpin calendar day, paired with terpin_year and terpin_month."
            }
          ]
        }
      },
      "response_shape": {
        "bodies": [
          {
            "above_horizon": "boolean",
            "albedo": "number",
            "altitude_deg": "number",
            "apparent_size": "number",
            "azimuth_deg": "number",
            "body_type": "string",
            "brightness": "number",
            "declination_deg": "number",
            "eclipse_type": {
              "id": "string",
              "label": "string"
            },
            "ecliptic_lat_deg": "number",
            "ecliptic_lon_deg": "number",
            "geocentric_dist": "number",
            "illuminated_fraction": "number",
            "is_circumpolar": "boolean",
            "is_never_rising": "boolean",
            "is_visible": "boolean",
            "name": {
              "id": "string",
              "label": "string"
            },
            "notes": "string",
            "right_ascension_deg": "number",
            "rings": "null",
            "rise_pulse": "number",
            "set_pulse": "number",
            "sidereal_fraction": "number",
            "synodic_fraction": "number",
            "transit_pulse": "number",
            "visibility": "number",
            "visible_moons": "null"
          }
        ],
        "fatune": {
          "above_horizon": "boolean",
          "altitude_deg": "number",
          "azimuth_deg": "number",
          "body_type": "string",
          "declination_deg": "number",
          "is_circumpolar": "boolean",
          "is_never_rising": "boolean",
          "name": {
            "id": "string",
            "label": "string"
          },
          "right_ascension_deg": "number",
          "rise_pulse": "number",
          "set_pulse": "number",
          "transit_pulse": "number"
        },
        "query": {
          "astro_day": "number",
          "astro_time": "string",
          "fatunik_date": {
            "calendar_id": "string",
            "day": "number",
            "month": "number",
            "year": "number"
          },
          "orbital_position": "number",
          "pulse": "number",
          "terpin_date": {
            "calendar_id": "string",
            "day": "number",
            "month": "number",
            "year": "number"
          }
        }
      },
      "examples": {
        "basic": {
          "request": "/moons?pulse=86400&format=json",
          "status": 200,
          "body": {
            "bodies": [
              {
                "above_horizon": false,
                "albedo": 0.13,
                "altitude_deg": -55.497123360901846,
                "apparent_size": 0.008095238095238095,
                "azimuth_deg": 355.53135838475595,
                "body_type": "moon",
                "brightness": 0.0010521349538653258,
                "declination_deg": -1.0474858384201982,
                "eclipse_type": {
                  "id": "lunar",
                  "label": "Lunar"
                },
                "ecliptic_lat_deg": 0.04489144154160911,
                "ecliptic_lon_deg": 182.73770865671642,
                "geocentric_dist": 420000.0,
                "illuminated_fraction": 0.9997662457543819,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "endor",
                  "label": "Endor"
                },
                "notes": "Tidal-locked; known as 'The Watcher'",
                "right_ascension_deg": 182.52993063501216,
                "rings": null,
                "rise_pulse": 22387,
                "set_pulse": 65227,
                "sidereal_fraction": 0.5076047462686567,
                "synodic_fraction": 0.5048668370128259,
                "transit_pulse": 43807,
                "visibility": 0.9997662457543819,
                "visible_moons": null
              },
              {
                "above_horizon": false,
                "albedo": 0.2,
                "altitude_deg": -16.659780883228805,
                "apparent_size": 0.008888888888888889,
                "azimuth_deg": 52.86886916407278,
                "body_type": "moon",
                "brightness": 0.0013822233975549617,
                "declination_deg": 17.735463192791734,
                "eclipse_type": null,
                "ecliptic_lat_deg": -1.394873666836248,
                "ecliptic_lon_deg": 124.69645318681317,
                "geocentric_dist": 180000.0,
                "illuminated_fraction": 0.777500661124666,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "sella",
                  "label": "Sella"
                },
                "notes": "Highly regular; favored by navigators",
                "right_ascension_deg": 126.68785134483628,
                "rings": null,
                "rise_pulse": 92044,
                "set_pulse": 141566,
                "sidereal_fraction": 0.3463790366300366,
                "synodic_fraction": 0.3436411273742058,
                "transit_pulse": 116805,
                "visibility": 0.777500661124666,
                "visible_moons": null
              },
              {
                "above_horizon": true,
                "albedo": 0.35,
                "altitude_deg": 58.60372451504386,
                "apparent_size": 0.005555555555555556,
                "azimuth_deg": 129.99317381125528,
                "body_type": "moon",
                "brightness": 9.908660094026816e-05,
                "declination_deg": 12.86385223557432,
                "eclipse_type": null,
                "ecliptic_lat_deg": 2.6078400474648182,
                "ecliptic_lon_deg": 27.078512432432422,
                "geocentric_dist": 90000.0,
                "illuminated_fraction": 0.050958823340709336,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": false,
                "name": {
                  "id": "lelako",
                  "label": "Lelako"
                },
                "notes": "Small but bright; sacred to rabbits",
                "right_ascension_deg": 24.166447450714074,
                "rings": null,
                "rise_pulse": 68352,
                "set_pulse": 116046,
                "sidereal_fraction": 0.07521809009009006,
                "synodic_fraction": 0.07248018083425928,
                "transit_pulse": 92199,
                "visibility": 0.0,
                "visible_moons": null
              },
              {
                "above_horizon": true,
                "albedo": 0.12,
                "altitude_deg": 17.216475102845333,
                "apparent_size": 0.008571428571428572,
                "azimuth_deg": 223.85858081845421,
                "body_type": "moon",
                "brightness": 0.0001901358910405368,
                "declination_deg": -22.903165242354,
                "eclipse_type": null,
                "ecliptic_lat_deg": -5.3816027076496935,
                "ecliptic_lon_deg": 310.0572664206642,
                "geocentric_dist": 350000.0,
                "illuminated_fraction": 0.18485433851163297,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "jembor",
                  "label": "Jembor"
                },
                "notes": "Captured object; not tidally locked; shows a different face",
                "right_ascension_deg": 314.07112082938283,
                "rings": null,
                "rise_pulse": 57982,
                "set_pulse": 92772,
                "sidereal_fraction": 0.861270184501845,
                "synodic_fraction": 0.8585322752460142,
                "transit_pulse": 75377,
                "visibility": 0.18485433851163297,
                "visible_moons": null
              },
              {
                "above_horizon": false,
                "albedo": 0.18,
                "altitude_deg": -33.57028772099985,
                "apparent_size": 0.008148148148148147,
                "azimuth_deg": 42.23204714715504,
                "body_type": "moon",
                "brightness": 0.0013195555306789474,
                "declination_deg": 10.461298812972533,
                "eclipse_type": null,
                "ecliptic_lat_deg": -3.22087285532639,
                "ecliptic_lon_deg": 144.0579108370044,
                "geocentric_dist": 270000.0,
                "illuminated_fraction": 0.8996969527356461,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "calumbra",
                  "label": "Calumbra"
                },
                "notes": "Mysterious albedo variation with seasons",
                "right_ascension_deg": 145.28501970823618,
                "rings": null,
                "rise_pulse": 97854,
                "set_pulse": 144682,
                "sidereal_fraction": 0.40016086343612334,
                "synodic_fraction": 0.39742295418029255,
                "transit_pulse": 121268,
                "visibility": 0.8996969527356461,
                "visible_moons": null
              },
              {
                "above_horizon": true,
                "albedo": 0.22,
                "altitude_deg": 24.500250524126162,
                "apparent_size": 0.006666666666666667,
                "azimuth_deg": 224.90623808772665,
                "body_type": "moon",
                "brightness": 0.00022033640099629938,
                "declination_deg": -16.513818943614435,
                "eclipse_type": null,
                "ecliptic_lat_deg": -0.30117689051742763,
                "ecliptic_lon_deg": 315.37585904761903,
                "geocentric_dist": 210000.0,
                "illuminated_fraction": 0.15022936431565864,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "zehembra",
                  "label": "Zehembra"
                },
                "notes": "Linked to solar omens and lore of fate; low inclination, eclipses often",
                "right_ascension_deg": 317.9312143733457,
                "rings": null,
                "rise_pulse": 57630,
                "set_pulse": 94976,
                "sidereal_fraction": 0.8760440529100529,
                "synodic_fraction": 0.8733061436542221,
                "transit_pulse": 76303,
                "visibility": 0.15022936431565864,
                "visible_moons": null
              },
              {
                "above_horizon": true,
                "albedo": 0.4,
                "altitude_deg": 11.405832170997172,
                "apparent_size": 0.005625,
                "azimuth_deg": 72.37782157537764,
                "body_type": "moon",
                "brightness": 0.0011181985372909918,
                "declination_deg": 20.881785866705638,
                "eclipse_type": null,
                "ecliptic_lat_deg": -2.556697393722537,
                "ecliptic_lon_deg": 90.63924957055215,
                "geocentric_dist": 160000.0,
                "illuminated_fraction": 0.4969771276848853,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "shunna",
                  "label": "Shunna"
                },
                "notes": "Cold, dazzling; seen best during Stillness",
                "right_ascension_deg": 90.68350952657603,
                "rings": null,
                "rise_pulse": 82779,
                "set_pulse": 133549,
                "sidereal_fraction": 0.25177569325153376,
                "synodic_fraction": 0.24903778399570298,
                "transit_pulse": 108164,
                "visibility": 0.4969771276848853,
                "visible_moons": null
              },
              {
                "above_horizon": false,
                "albedo": 0.1,
                "altitude_deg": -56.12442894424748,
                "apparent_size": 0.007916666666666667,
                "azimuth_deg": 331.2635705653327,
                "body_type": "moon",
                "brightness": 0.0007777595672122893,
                "declination_deg": -4.803151543989017,
                "eclipse_type": null,
                "ecliptic_lat_deg": 1.7063954572310793,
                "ecliptic_lon_deg": 196.21844000000002,
                "geocentric_dist": 480000.0,
                "illuminated_fraction": 0.9824331375313127,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "kanka",
                  "label": "Kanka"
                },
                "notes": "Captured moon with seismic activity; sometimes 'moans' in storms",
                "right_ascension_deg": 195.60045953958254,
                "rings": null,
                "rise_pulse": 26168,
                "set_pulse": 67720,
                "sidereal_fraction": 0.5450512222222222,
                "synodic_fraction": 0.5423133129663914,
                "transit_pulse": 46944,
                "visibility": 0.9824331375313127,
                "visible_moons": null
              }
            ],
            "fatune": {
              "above_horizon": true,
              "altitude_deg": 54.91195094677526,
              "azimuth_deg": 178.4267162083571,
              "body_type": "star",
              "declination_deg": 0.3920629025859045,
              "is_circumpolar": false,
              "is_never_rising": false,
              "name": {
                "id": "fatune",
                "label": "Fatune"
              },
              "right_ascension_deg": 0.9043230109308478,
              "rise_pulse": 64950,
              "set_pulse": 108284,
              "transit_pulse": 86617
            },
            "query": {
              "astro_day": 2,
              "astro_time": "00:00:00",
              "fatunik_date": {
                "calendar_id": "fatunik",
                "day": 30,
                "month": 10,
                "year": -1531
              },
              "orbital_position": 0.0027379092558307886,
              "pulse": 86400,
              "terpin_date": {
                "calendar_id": "terpin",
                "day": 5,
                "month": 1,
                "year": -1042
              }
            }
          }
        },
        "localized": {
          "request": "/moons?pulse=86400&format=json&locale=es-ES",
          "status": 200,
          "body": {
            "bodies": [
              {
                "above_horizon": false,
                "albedo": 0.13,
                "altitude_deg": -55.497123360901846,
                "apparent_size": 0.008095238095238095,
                "azimuth_deg": 355.53135838475595,
                "body_type": "moon",
                "brightness": 0.0010521349538653258,
                "declination_deg": -1.0474858384201982,
                "eclipse_type": {
                  "id": "lunar",
                  "label": "Lunar"
                },
                "ecliptic_lat_deg": 0.04489144154160911,
                "ecliptic_lon_deg": 182.73770865671642,
                "geocentric_dist": 420000.0,
                "illuminated_fraction": 0.9997662457543819,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "endor",
                  "label": "\u00c9ndor"
                },
                "notes": "Con rotaci\u00f3n sincr\u00f3nica; conocida como \u00abla Vigilante\u00bb",
                "right_ascension_deg": 182.52993063501216,
                "rings": null,
                "rise_pulse": 22387,
                "set_pulse": 65227,
                "sidereal_fraction": 0.5076047462686567,
                "synodic_fraction": 0.5048668370128259,
                "transit_pulse": 43807,
                "visibility": 0.9997662457543819,
                "visible_moons": null
              },
              {
                "above_horizon": false,
                "albedo": 0.2,
                "altitude_deg": -16.659780883228805,
                "apparent_size": 0.008888888888888889,
                "azimuth_deg": 52.86886916407278,
                "body_type": "moon",
                "brightness": 0.0013822233975549617,
                "declination_deg": 17.735463192791734,
                "eclipse_type": null,
                "ecliptic_lat_deg": -1.394873666836248,
                "ecliptic_lon_deg": 124.69645318681317,
                "geocentric_dist": 180000.0,
                "illuminated_fraction": 0.777500661124666,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "sella",
                  "label": "Sela"
                },
                "notes": "Muy regular; favorita de los navegantes",
                "right_ascension_deg": 126.68785134483628,
                "rings": null,
                "rise_pulse": 92044,
                "set_pulse": 141566,
                "sidereal_fraction": 0.3463790366300366,
                "synodic_fraction": 0.3436411273742058,
                "transit_pulse": 116805,
                "visibility": 0.777500661124666,
                "visible_moons": null
              },
              {
                "above_horizon": true,
                "albedo": 0.35,
                "altitude_deg": 58.60372451504386,
                "apparent_size": 0.005555555555555556,
                "azimuth_deg": 129.99317381125528,
                "body_type": "moon",
                "brightness": 9.908660094026816e-05,
                "declination_deg": 12.86385223557432,
                "eclipse_type": null,
                "ecliptic_lat_deg": 2.6078400474648182,
                "ecliptic_lon_deg": 27.078512432432422,
                "geocentric_dist": 90000.0,
                "illuminated_fraction": 0.050958823340709336,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": false,
                "name": {
                  "id": "lelako",
                  "label": "Lelako"
                },
                "notes": "Peque\u00f1a pero brillante; sagrada para los conejos",
                "right_ascension_deg": 24.166447450714074,
                "rings": null,
                "rise_pulse": 68352,
                "set_pulse": 116046,
                "sidereal_fraction": 0.07521809009009006,
                "synodic_fraction": 0.07248018083425928,
                "transit_pulse": 92199,
                "visibility": 0.0,
                "visible_moons": null
              },
              {
                "above_horizon": true,
                "albedo": 0.12,
                "altitude_deg": 17.216475102845333,
                "apparent_size": 0.008571428571428572,
                "azimuth_deg": 223.85858081845421,
                "body_type": "moon",
                "brightness": 0.0001901358910405368,
                "declination_deg": -22.903165242354,
                "eclipse_type": null,
                "ecliptic_lat_deg": -5.3816027076496935,
                "ecliptic_lon_deg": 310.0572664206642,
                "geocentric_dist": 350000.0,
                "illuminated_fraction": 0.18485433851163297,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "jembor",
                  "label": "Dj\u00e9mbor"
                },
                "notes": "Objeto capturado; sin rotaci\u00f3n sincr\u00f3nica; muestra una cara distinta",
                "right_ascension_deg": 314.07112082938283,
                "rings": null,
                "rise_pulse": 57982,
                "set_pulse": 92772,
                "sidereal_fraction": 0.861270184501845,
                "synodic_fraction": 0.8585322752460142,
                "transit_pulse": 75377,
                "visibility": 0.18485433851163297,
                "visible_moons": null
              },
              {
                "above_horizon": false,
                "albedo": 0.18,
                "altitude_deg": -33.57028772099985,
                "apparent_size": 0.008148148148148147,
                "azimuth_deg": 42.23204714715504,
                "body_type": "moon",
                "brightness": 0.0013195555306789474,
                "declination_deg": 10.461298812972533,
                "eclipse_type": null,
                "ecliptic_lat_deg": -3.22087285532639,
                "ecliptic_lon_deg": 144.0579108370044,
                "geocentric_dist": 270000.0,
                "illuminated_fraction": 0.8996969527356461,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "calumbra",
                  "label": "Calumbra"
                },
                "notes": "Variaci\u00f3n misteriosa de albedo seg\u00fan las estaciones",
                "right_ascension_deg": 145.28501970823618,
                "rings": null,
                "rise_pulse": 97854,
                "set_pulse": 144682,
                "sidereal_fraction": 0.40016086343612334,
                "synodic_fraction": 0.39742295418029255,
                "transit_pulse": 121268,
                "visibility": 0.8996969527356461,
                "visible_moons": null
              },
              {
                "above_horizon": true,
                "albedo": 0.22,
                "altitude_deg": 24.500250524126162,
                "apparent_size": 0.006666666666666667,
                "azimuth_deg": 224.90623808772665,
                "body_type": "moon",
                "brightness": 0.00022033640099629938,
                "declination_deg": -16.513818943614435,
                "eclipse_type": null,
                "ecliptic_lat_deg": -0.30117689051742763,
                "ecliptic_lon_deg": 315.37585904761903,
                "geocentric_dist": 210000.0,
                "illuminated_fraction": 0.15022936431565864,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "zehembra",
                  "label": "Zehembra"
                },
                "notes": "Vinculada a presagios solares y la tradici\u00f3n local del destino; baja inclinaci\u00f3n, eclipses frecuentes",
                "right_ascension_deg": 317.9312143733457,
                "rings": null,
                "rise_pulse": 57630,
                "set_pulse": 94976,
                "sidereal_fraction": 0.8760440529100529,
                "synodic_fraction": 0.8733061436542221,
                "transit_pulse": 76303,
                "visibility": 0.15022936431565864,
                "visible_moons": null
              },
              {
                "above_horizon": true,
                "albedo": 0.4,
                "altitude_deg": 11.405832170997172,
                "apparent_size": 0.005625,
                "azimuth_deg": 72.37782157537764,
                "body_type": "moon",
                "brightness": 0.0011181985372909918,
                "declination_deg": 20.881785866705638,
                "eclipse_type": null,
                "ecliptic_lat_deg": -2.556697393722537,
                "ecliptic_lon_deg": 90.63924957055215,
                "geocentric_dist": 160000.0,
                "illuminated_fraction": 0.4969771276848853,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "shunna",
                  "label": "Shuna"
                },
                "notes": "Fr\u00eda, deslumbrante; se ve mejor durante la Quietud",
                "right_ascension_deg": 90.68350952657603,
                "rings": null,
                "rise_pulse": 82779,
                "set_pulse": 133549,
                "sidereal_fraction": 0.25177569325153376,
                "synodic_fraction": 0.24903778399570298,
                "transit_pulse": 108164,
                "visibility": 0.4969771276848853,
                "visible_moons": null
              },
              {
                "above_horizon": false,
                "albedo": 0.1,
                "altitude_deg": -56.12442894424748,
                "apparent_size": 0.007916666666666667,
                "azimuth_deg": 331.2635705653327,
                "body_type": "moon",
                "brightness": 0.0007777595672122893,
                "declination_deg": -4.803151543989017,
                "eclipse_type": null,
                "ecliptic_lat_deg": 1.7063954572310793,
                "ecliptic_lon_deg": 196.21844000000002,
                "geocentric_dist": 480000.0,
                "illuminated_fraction": 0.9824331375313127,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "kanka",
                  "label": "Kanka"
                },
                "notes": "Luna capturada con actividad s\u00edsmica; a veces \u00abgime\u00bb durante las tormentas",
                "right_ascension_deg": 195.60045953958254,
                "rings": null,
                "rise_pulse": 26168,
                "set_pulse": 67720,
                "sidereal_fraction": 0.5450512222222222,
                "synodic_fraction": 0.5423133129663914,
                "transit_pulse": 46944,
                "visibility": 0.9824331375313127,
                "visible_moons": null
              }
            ],
            "fatune": {
              "above_horizon": true,
              "altitude_deg": 54.91195094677526,
              "azimuth_deg": 178.4267162083571,
              "body_type": "star",
              "declination_deg": 0.3920629025859045,
              "is_circumpolar": false,
              "is_never_rising": false,
              "name": {
                "id": "fatune",
                "label": "Fat\u00fan"
              },
              "right_ascension_deg": 0.9043230109308478,
              "rise_pulse": 64950,
              "set_pulse": 108284,
              "transit_pulse": 86617
            },
            "query": {
              "astro_day": 2,
              "astro_time": "00:00:00",
              "fatunik_date": {
                "calendar_id": "fatunik",
                "day": 30,
                "month": 10,
                "year": -1531
              },
              "orbital_position": 0.0027379092558307886,
              "pulse": 86400,
              "terpin_date": {
                "calendar_id": "terpin",
                "day": 5,
                "month": 1,
                "year": -1042
              }
            }
          }
        },
        "error": {
          "request": "/moons?pulse=not_a_number&format=json",
          "status": 400,
          "body": {
            "error": {
              "code": "invalid_pulse_value",
              "message": "Valor de pulso inv\u00e1lido: 'not_a_number'; introduce un n\u00famero."
            }
          }
        }
      }
    },
    "/planets": {
      "description": "Same moment resolution as /moons. Returns every planet's complete body\nstate and sky position (including rings and visible-moons metadata) at\nthat moment, alongside Fatune's sky position.",
      "parameters": [],
      "moment_resolution": {
        "prefix": null,
        "priority": [
          "pulse",
          "astro_day",
          "fatunik_date",
          "terpin_date"
        ],
        "branches": {
          "pulse": [
            {
              "name": "pulse",
              "type": "float",
              "required": false,
              "description": "Raw pulse count. Rounded to the nearest integer pulse."
            }
          ],
          "astro_day": [
            {
              "name": "astro_day",
              "type": "int",
              "required": false,
              "description": "1-indexed Astro Day."
            },
            {
              "name": "time_of_day",
              "type": "string",
              "required": false,
              "description": "Civil time-of-day within an Astro Day, paired with astro_day. Range 00:00:00-23:59:59.",
              "constraints": {
                "pattern": "HH:MM:SS"
              }
            }
          ],
          "fatunik_date": [
            {
              "name": "fatunik_year",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar year, paired with fatunik_month and fatunik_day."
            },
            {
              "name": "fatunik_month",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar month, paired with fatunik_year and fatunik_day."
            },
            {
              "name": "fatunik_day",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar day, paired with fatunik_year and fatunik_month."
            }
          ],
          "terpin_date": [
            {
              "name": "terpin_year",
              "type": "int",
              "required": false,
              "description": "Terpin calendar year, paired with terpin_month and terpin_day."
            },
            {
              "name": "terpin_month",
              "type": "int",
              "required": false,
              "description": "Terpin calendar month, paired with terpin_year and terpin_day."
            },
            {
              "name": "terpin_day",
              "type": "int",
              "required": false,
              "description": "Terpin calendar day, paired with terpin_year and terpin_month."
            }
          ]
        }
      },
      "response_shape": {
        "bodies": [
          {
            "above_horizon": "boolean",
            "albedo": "null",
            "altitude_deg": "number",
            "apparent_size": "number",
            "azimuth_deg": "number",
            "body_type": "string",
            "brightness": "number",
            "declination_deg": "number",
            "eclipse_type": "null",
            "ecliptic_lat_deg": "number",
            "ecliptic_lon_deg": "number",
            "geocentric_dist": "number",
            "illuminated_fraction": "number",
            "is_circumpolar": "boolean",
            "is_never_rising": "boolean",
            "is_visible": "boolean",
            "name": {
              "id": "string",
              "label": "string"
            },
            "notes": "string",
            "right_ascension_deg": "number",
            "rings": "null",
            "rise_pulse": "number",
            "set_pulse": "number",
            "sidereal_fraction": "number",
            "synodic_fraction": "number",
            "transit_pulse": "number",
            "visibility": "number",
            "visible_moons": "number"
          }
        ],
        "fatune": {
          "above_horizon": "boolean",
          "altitude_deg": "number",
          "azimuth_deg": "number",
          "body_type": "string",
          "declination_deg": "number",
          "is_circumpolar": "boolean",
          "is_never_rising": "boolean",
          "name": {
            "id": "string",
            "label": "string"
          },
          "right_ascension_deg": "number",
          "rise_pulse": "number",
          "set_pulse": "number",
          "transit_pulse": "number"
        },
        "query": {
          "astro_day": "number",
          "astro_time": "string",
          "fatunik_date": {
            "calendar_id": "string",
            "day": "number",
            "month": "number",
            "year": "number"
          },
          "orbital_position": "number",
          "pulse": "number",
          "terpin_date": {
            "calendar_id": "string",
            "day": "number",
            "month": "number",
            "year": "number"
          }
        }
      },
      "examples": {
        "basic": {
          "request": "/planets?pulse=86400&format=json",
          "status": 200,
          "body": {
            "bodies": [
              {
                "above_horizon": true,
                "albedo": null,
                "altitude_deg": 55.45796350689001,
                "apparent_size": 2.2723960552910855e-05,
                "azimuth_deg": 164.4428869376499,
                "body_type": "planet",
                "brightness": 2.640253918148991e-06,
                "declination_deg": 1.8976072568432059,
                "eclipse_type": null,
                "ecliptic_lat_deg": -1.725523207204577,
                "ecliptic_lon_deg": 8.787117127072316,
                "geocentric_dist": 1.3531576368845617,
                "illuminated_fraction": 0.9682342095844088,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": false,
                "name": {
                  "id": "aesthra",
                  "label": "Aesthra"
                },
                "notes": "Swift dawn-or-dusk herald; never far from Fatune's glare; shows crescent-to-full phases through a glass. Inner co-orbital twin.",
                "right_ascension_deg": 8.751834894001098,
                "rings": null,
                "rise_pulse": 66576,
                "set_pulse": 110424,
                "sidereal_fraction": 0.08144563636363637,
                "synodic_fraction": 0.0216707494304812,
                "transit_pulse": 88500,
                "visibility": 0.0,
                "visible_moons": 0
              },
              {
                "above_horizon": true,
                "albedo": null,
                "altitude_deg": 48.25335252171279,
                "apparent_size": 4.2970593285109934e-05,
                "azimuth_deg": 201.41211409919288,
                "body_type": "planet",
                "brightness": 8.406007470689305e-07,
                "declination_deg": -4.123174681870054,
                "eclipse_type": null,
                "ecliptic_lat_deg": 1.7608033490447579,
                "ecliptic_lon_deg": 345.41947228719994,
                "geocentric_dist": 0.6844723586391115,
                "illuminated_fraction": 0.1397302338986544,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": false,
                "name": {
                  "id": "lethra",
                  "label": "Lethra"
                },
                "notes": "Co-orbital twin half a cycle behind Aesthra; rides the dusk when Aesthra rides the dawn. The two heralds.",
                "right_ascension_deg": 345.89434850353365,
                "rings": null,
                "rise_pulse": 62121,
                "set_pulse": 103907,
                "sidereal_fraction": 0.5814456363636363,
                "synodic_fraction": 0.9567606248752802,
                "transit_pulse": 83014,
                "visibility": 0.0,
                "visible_moons": 0
              },
              {
                "above_horizon": true,
                "albedo": null,
                "altitude_deg": 30.946984345768612,
                "apparent_size": 0.00019182023005853433,
                "azimuth_deg": 224.50491090979244,
                "body_type": "planet",
                "brightness": 3.406685373380065e-05,
                "declination_deg": -11.52211432076939,
                "eclipse_type": null,
                "ecliptic_lat_deg": 3.2034171944341328,
                "ecliptic_lon_deg": 320.80100784968675,
                "geocentric_dist": 0.43560232934168563,
                "illuminated_fraction": 0.27322740771322174,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": false,
                "name": {
                  "id": "beyarus",
                  "label": "Beyarus"
                },
                "notes": "Brightest wanderer; a beacon under heavy cloud; dramatic phases through a glass.",
                "right_ascension_deg": 322.1535744851882,
                "rings": null,
                "rise_pulse": 57721,
                "set_pulse": 96911,
                "sidereal_fraction": 0.5661934444444445,
                "synodic_fraction": 0.8883760014377435,
                "transit_pulse": 77316,
                "visibility": 0.11801547851352989,
                "visible_moons": 0
              },
              {
                "above_horizon": true,
                "albedo": null,
                "altitude_deg": 14.438893936723328,
                "apparent_size": 0.00012387580705583,
                "azimuth_deg": 75.7257598383937,
                "body_type": "planet",
                "brightness": 2.9537922221861413e-05,
                "declination_deg": 19.825324910757146,
                "eclipse_type": null,
                "ecliptic_lat_deg": -3.56409269680036,
                "ecliptic_lon_deg": 86.29366962013205,
                "geocentric_dist": 0.8094300995256984,
                "illuminated_fraction": 0.7948262302352782,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "dramond",
                  "label": "Dramond"
                },
                "notes": "Amber wanderer with a faintly oval disk and one dim attendant moon visible through a good glass.",
                "right_ascension_deg": 86.0674339859324,
                "rings": null,
                "rise_pulse": 81884,
                "set_pulse": 132228,
                "sidereal_fraction": 0.389337,
                "synodic_fraction": 0.23696672857786938,
                "transit_pulse": 107056,
                "visibility": 0.4591005183474841,
                "visible_moons": 1
              },
              {
                "above_horizon": false,
                "albedo": null,
                "altitude_deg": -3.9296678685067743,
                "apparent_size": 3.463912694195283e-05,
                "azimuth_deg": 246.89375708614813,
                "body_type": "planet",
                "brightness": 4.879043023619767e-06,
                "declination_deg": -21.015753928495986,
                "eclipse_type": null,
                "ecliptic_lat_deg": 2.0623661515210325,
                "ecliptic_lon_deg": 279.87412442839076,
                "geocentric_dist": 1.3122499452020782,
                "illuminated_fraction": 0.880334511569084,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "thurnak",
                  "label": "Thurnak"
                },
                "notes": "The red wanderer; noticeably bright at opposition; ill-omened in lore.",
                "right_ascension_deg": 280.57863649283246,
                "rings": null,
                "rise_pulse": 49551,
                "set_pulse": 85125,
                "sidereal_fraction": 0.6649926040756915,
                "synodic_fraction": 0.7746902141563659,
                "transit_pulse": 67338,
                "visibility": 0.4227441540071069,
                "visible_moons": 0
              },
              {
                "above_horizon": true,
                "albedo": null,
                "altitude_deg": 7.623282550878364,
                "apparent_size": 0.00016192399850591664,
                "azimuth_deg": 236.0372327168965,
                "body_type": "planet",
                "brightness": 8.03461536645434e-05,
                "declination_deg": -21.96119118561993,
                "eclipse_type": null,
                "ecliptic_lat_deg": -0.9228798687061867,
                "ecliptic_lon_deg": 295.42978329698445,
                "geocentric_dist": 5.5731038625090905,
                "illuminated_fraction": 0.9923933994454515,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "zelven",
                  "label": "Zelven"
                },
                "notes": "Banded giant with a train of four bright moons visible through a spyglass.",
                "right_ascension_deg": 297.5770590589092,
                "rings": null,
                "rise_pulse": 53826,
                "set_pulse": 89010,
                "sidereal_fraction": 0.7928413105022831,
                "synodic_fraction": 0.8179003776802372,
                "transit_pulse": 71418,
                "visibility": 0.2930970884401748,
                "visible_moons": 4
              },
              {
                "above_horizon": false,
                "albedo": null,
                "altitude_deg": -20.982774300288554,
                "apparent_size": 8.359862735457546e-05,
                "azimuth_deg": 257.3944623044325,
                "body_type": "planet",
                "brightness": 3.75173266741071e-05,
                "declination_deg": -21.94648999158266,
                "eclipse_type": null,
                "ecliptic_lat_deg": 1.1207445224647556,
                "ecliptic_lon_deg": 260.01293360652596,
                "geocentric_dist": 9.195456233992793,
                "illuminated_fraction": 0.9972871528136196,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "kreetha",
                  "label": "Kreetha"
                },
                "notes": "Slowest and most distant; the ringed sage.",
                "right_ascension_deg": 259.22576448747344,
                "rings": "Prominent; appears as a flattened, 'eared' disk through a glass",
                "rise_pulse": 44619,
                "set_pulse": 79809,
                "sidereal_fraction": 0.7056714733112895,
                "synodic_fraction": 0.7195202396511858,
                "transit_pulse": 62214,
                "visibility": 0.5951707441057289,
                "visible_moons": 1
              }
            ],
            "fatune": {
              "above_horizon": true,
              "altitude_deg": 54.91195094677526,
              "azimuth_deg": 178.4267162083571,
              "body_type": "star",
              "declination_deg": 0.3920629025859045,
              "is_circumpolar": false,
              "is_never_rising": false,
              "name": {
                "id": "fatune",
                "label": "Fatune"
              },
              "right_ascension_deg": 0.9043230109308478,
              "rise_pulse": 64950,
              "set_pulse": 108284,
              "transit_pulse": 86617
            },
            "query": {
              "astro_day": 2,
              "astro_time": "00:00:00",
              "fatunik_date": {
                "calendar_id": "fatunik",
                "day": 30,
                "month": 10,
                "year": -1531
              },
              "orbital_position": 0.0027379092558307886,
              "pulse": 86400,
              "terpin_date": {
                "calendar_id": "terpin",
                "day": 5,
                "month": 1,
                "year": -1042
              }
            }
          }
        },
        "localized": {
          "request": "/planets?pulse=86400&format=json&locale=es-ES",
          "status": 200,
          "body": {
            "bodies": [
              {
                "above_horizon": true,
                "albedo": null,
                "altitude_deg": 55.45796350689001,
                "apparent_size": 2.2723960552910855e-05,
                "azimuth_deg": 164.4428869376499,
                "body_type": "planet",
                "brightness": 2.640253918148991e-06,
                "declination_deg": 1.8976072568432059,
                "eclipse_type": null,
                "ecliptic_lat_deg": -1.725523207204577,
                "ecliptic_lon_deg": 8.787117127072316,
                "geocentric_dist": 1.3531576368845617,
                "illuminated_fraction": 0.9682342095844088,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": false,
                "name": {
                  "id": "aesthra",
                  "label": "Aestra"
                },
                "notes": "Heraldo veloz del amanecer o el atardecer; nunca lejos del resplandor de Fat\u00fan; muestra fases de creciente a llena con un catalejo. Gemelo interior co-orbital.",
                "right_ascension_deg": 8.751834894001098,
                "rings": null,
                "rise_pulse": 66576,
                "set_pulse": 110424,
                "sidereal_fraction": 0.08144563636363637,
                "synodic_fraction": 0.0216707494304812,
                "transit_pulse": 88500,
                "visibility": 0.0,
                "visible_moons": 0
              },
              {
                "above_horizon": true,
                "albedo": null,
                "altitude_deg": 48.25335252171279,
                "apparent_size": 4.2970593285109934e-05,
                "azimuth_deg": 201.41211409919288,
                "body_type": "planet",
                "brightness": 8.406007470689305e-07,
                "declination_deg": -4.123174681870054,
                "eclipse_type": null,
                "ecliptic_lat_deg": 1.7608033490447579,
                "ecliptic_lon_deg": 345.41947228719994,
                "geocentric_dist": 0.6844723586391115,
                "illuminated_fraction": 0.1397302338986544,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": false,
                "name": {
                  "id": "lethra",
                  "label": "Letra"
                },
                "notes": "Gemelo co-orbital medio ciclo detr\u00e1s de Aestra; surca el atardecer cuando Aestra surca el amanecer. Los dos heraldos.",
                "right_ascension_deg": 345.89434850353365,
                "rings": null,
                "rise_pulse": 62121,
                "set_pulse": 103907,
                "sidereal_fraction": 0.5814456363636363,
                "synodic_fraction": 0.9567606248752802,
                "transit_pulse": 83014,
                "visibility": 0.0,
                "visible_moons": 0
              },
              {
                "above_horizon": true,
                "albedo": null,
                "altitude_deg": 30.946984345768612,
                "apparent_size": 0.00019182023005853433,
                "azimuth_deg": 224.50491090979244,
                "body_type": "planet",
                "brightness": 3.406685373380065e-05,
                "declination_deg": -11.52211432076939,
                "eclipse_type": null,
                "ecliptic_lat_deg": 3.2034171944341328,
                "ecliptic_lon_deg": 320.80100784968675,
                "geocentric_dist": 0.43560232934168563,
                "illuminated_fraction": 0.27322740771322174,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": false,
                "name": {
                  "id": "beyarus",
                  "label": "Beyarus"
                },
                "notes": "El errante m\u00e1s brillante; un faro bajo nubes densas; fases dram\u00e1ticas con un catalejo.",
                "right_ascension_deg": 322.1535744851882,
                "rings": null,
                "rise_pulse": 57721,
                "set_pulse": 96911,
                "sidereal_fraction": 0.5661934444444445,
                "synodic_fraction": 0.8883760014377435,
                "transit_pulse": 77316,
                "visibility": 0.11801547851352989,
                "visible_moons": 0
              },
              {
                "above_horizon": true,
                "albedo": null,
                "altitude_deg": 14.438893936723328,
                "apparent_size": 0.00012387580705583,
                "azimuth_deg": 75.7257598383937,
                "body_type": "planet",
                "brightness": 2.9537922221861413e-05,
                "declination_deg": 19.825324910757146,
                "eclipse_type": null,
                "ecliptic_lat_deg": -3.56409269680036,
                "ecliptic_lon_deg": 86.29366962013205,
                "geocentric_dist": 0.8094300995256984,
                "illuminated_fraction": 0.7948262302352782,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "dramond",
                  "label": "Dr\u00e1mun"
                },
                "notes": "Errante ambarino con un disco levemente ovalado y una luna tenue visible con un buen catalejo.",
                "right_ascension_deg": 86.0674339859324,
                "rings": null,
                "rise_pulse": 81884,
                "set_pulse": 132228,
                "sidereal_fraction": 0.389337,
                "synodic_fraction": 0.23696672857786938,
                "transit_pulse": 107056,
                "visibility": 0.4591005183474841,
                "visible_moons": 1
              },
              {
                "above_horizon": false,
                "albedo": null,
                "altitude_deg": -3.9296678685067743,
                "apparent_size": 3.463912694195283e-05,
                "azimuth_deg": 246.89375708614813,
                "body_type": "planet",
                "brightness": 4.879043023619767e-06,
                "declination_deg": -21.015753928495986,
                "eclipse_type": null,
                "ecliptic_lat_deg": 2.0623661515210325,
                "ecliptic_lon_deg": 279.87412442839076,
                "geocentric_dist": 1.3122499452020782,
                "illuminated_fraction": 0.880334511569084,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "thurnak",
                  "label": "T\u00farnak"
                },
                "notes": "El errante rojo; notablemente brillante en oposici\u00f3n; de mal ag\u00fcero en la tradici\u00f3n local.",
                "right_ascension_deg": 280.57863649283246,
                "rings": null,
                "rise_pulse": 49551,
                "set_pulse": 85125,
                "sidereal_fraction": 0.6649926040756915,
                "synodic_fraction": 0.7746902141563659,
                "transit_pulse": 67338,
                "visibility": 0.4227441540071069,
                "visible_moons": 0
              },
              {
                "above_horizon": true,
                "albedo": null,
                "altitude_deg": 7.623282550878364,
                "apparent_size": 0.00016192399850591664,
                "azimuth_deg": 236.0372327168965,
                "body_type": "planet",
                "brightness": 8.03461536645434e-05,
                "declination_deg": -21.96119118561993,
                "eclipse_type": null,
                "ecliptic_lat_deg": -0.9228798687061867,
                "ecliptic_lon_deg": 295.42978329698445,
                "geocentric_dist": 5.5731038625090905,
                "illuminated_fraction": 0.9923933994454515,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "zelven",
                  "label": "Zelven"
                },
                "notes": "Gigante de bandas con un cortejo de cuatro lunas brillantes visibles con un catalejo.",
                "right_ascension_deg": 297.5770590589092,
                "rings": null,
                "rise_pulse": 53826,
                "set_pulse": 89010,
                "sidereal_fraction": 0.7928413105022831,
                "synodic_fraction": 0.8179003776802372,
                "transit_pulse": 71418,
                "visibility": 0.2930970884401748,
                "visible_moons": 4
              },
              {
                "above_horizon": false,
                "albedo": null,
                "altitude_deg": -20.982774300288554,
                "apparent_size": 8.359862735457546e-05,
                "azimuth_deg": 257.3944623044325,
                "body_type": "planet",
                "brightness": 3.75173266741071e-05,
                "declination_deg": -21.94648999158266,
                "eclipse_type": null,
                "ecliptic_lat_deg": 1.1207445224647556,
                "ecliptic_lon_deg": 260.01293360652596,
                "geocentric_dist": 9.195456233992793,
                "illuminated_fraction": 0.9972871528136196,
                "is_circumpolar": false,
                "is_never_rising": false,
                "is_visible": true,
                "name": {
                  "id": "kreetha",
                  "label": "Krita"
                },
                "notes": "El m\u00e1s lento y distante; el sabio anillado.",
                "right_ascension_deg": 259.22576448747344,
                "rings": "Prominente; aparece como un disco achatado y \u00aborejudo\u00bb visto con un catalejo",
                "rise_pulse": 44619,
                "set_pulse": 79809,
                "sidereal_fraction": 0.7056714733112895,
                "synodic_fraction": 0.7195202396511858,
                "transit_pulse": 62214,
                "visibility": 0.5951707441057289,
                "visible_moons": 1
              }
            ],
            "fatune": {
              "above_horizon": true,
              "altitude_deg": 54.91195094677526,
              "azimuth_deg": 178.4267162083571,
              "body_type": "star",
              "declination_deg": 0.3920629025859045,
              "is_circumpolar": false,
              "is_never_rising": false,
              "name": {
                "id": "fatune",
                "label": "Fat\u00fan"
              },
              "right_ascension_deg": 0.9043230109308478,
              "rise_pulse": 64950,
              "set_pulse": 108284,
              "transit_pulse": 86617
            },
            "query": {
              "astro_day": 2,
              "astro_time": "00:00:00",
              "fatunik_date": {
                "calendar_id": "fatunik",
                "day": 30,
                "month": 10,
                "year": -1531
              },
              "orbital_position": 0.0027379092558307886,
              "pulse": 86400,
              "terpin_date": {
                "calendar_id": "terpin",
                "day": 5,
                "month": 1,
                "year": -1042
              }
            }
          }
        },
        "error": {
          "request": "/planets?pulse=not_a_number&format=json",
          "status": 400,
          "body": {
            "error": {
              "code": "invalid_pulse_value",
              "message": "Valor de pulso inv\u00e1lido: 'not_a_number'; introduce un n\u00famero."
            }
          }
        }
      }
    },
    "/sky": {
      "description": "Same moment resolution as /moons and /planets. Returns the full sky scene\nat that moment: which bodies and fixed stars are up, the active House, the\nseason, co-fullness status, and (when lore_time is enabled) lore-language\ntime and date.",
      "parameters": [],
      "moment_resolution": {
        "prefix": null,
        "priority": [
          "pulse",
          "astro_day",
          "fatunik_date",
          "terpin_date"
        ],
        "branches": {
          "pulse": [
            {
              "name": "pulse",
              "type": "float",
              "required": false,
              "description": "Raw pulse count. Rounded to the nearest integer pulse."
            }
          ],
          "astro_day": [
            {
              "name": "astro_day",
              "type": "int",
              "required": false,
              "description": "1-indexed Astro Day."
            },
            {
              "name": "time_of_day",
              "type": "string",
              "required": false,
              "description": "Civil time-of-day within an Astro Day, paired with astro_day. Range 00:00:00-23:59:59.",
              "constraints": {
                "pattern": "HH:MM:SS"
              }
            }
          ],
          "fatunik_date": [
            {
              "name": "fatunik_year",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar year, paired with fatunik_month and fatunik_day."
            },
            {
              "name": "fatunik_month",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar month, paired with fatunik_year and fatunik_day."
            },
            {
              "name": "fatunik_day",
              "type": "int",
              "required": false,
              "description": "Fatunik calendar day, paired with fatunik_year and fatunik_month."
            }
          ],
          "terpin_date": [
            {
              "name": "terpin_year",
              "type": "int",
              "required": false,
              "description": "Terpin calendar year, paired with terpin_month and terpin_day."
            },
            {
              "name": "terpin_month",
              "type": "int",
              "required": false,
              "description": "Terpin calendar month, paired with terpin_year and terpin_day."
            },
            {
              "name": "terpin_day",
              "type": "int",
              "required": false,
              "description": "Terpin calendar day, paired with terpin_year and terpin_month."
            }
          ]
        }
      },
      "response_shape": {
        "days_until_next_cofullness": "number",
        "image_prompt": "string",
        "lore": {
          "fatunik_date": "string",
          "fatunik_time": "string",
          "lunar_dates": [
            {
              "calendar": {
                "id": "string",
                "label": "string"
              },
              "lore_date": "string"
            }
          ],
          "terpin_date": "string",
          "terpin_time": "string"
        },
        "lunar_calendars": [
          {
            "calendar": {
              "id": "string",
              "label": "string"
            },
            "day": "number",
            "has_turns": "boolean",
            "long_count": "number",
            "lunation": "number",
            "month": "number",
            "moon": {
              "id": "string",
              "label": "string"
            },
            "short_count": "number",
            "turn": "number"
          }
        ],
        "night_summary": "string",
        "query": {
          "astro_day": "number",
          "astro_time": "string",
          "fatunik_date": {
            "calendar_id": "string",
            "day": "number",
            "month": "number",
            "year": "number"
          },
          "orbital_position": "number",
          "pulse": "number",
          "terpin_date": {
            "calendar_id": "string",
            "day": "number",
            "month": "number",
            "year": "number"
          }
        },
        "scene": {
          "active_house": {
            "id": "string",
            "label": "string"
          },
          "bodies_up": [
            {
              "altitude": "number",
              "body_type": "string",
              "brightness": "number",
              "color": "string",
              "direction": "string",
              "name": {
                "id": "string",
                "label": "string"
              },
              "phase": "string"
            }
          ],
          "circumpolar_houses": [
            {
              "id": "string",
              "label": "string"
            }
          ],
          "co_fullness_tonight": {
            "count": "number",
            "moons": [
              {
                "id": "string",
                "label": "string"
              }
            ],
            "observable": "boolean"
          },
          "next_co_fullness": {
            "count": "number",
            "moons": [
              {
                "id": "string",
                "label": "string"
              }
            ],
            "pulse": "number"
          },
          "stars_up": [
            {
              "name": {
                "id": "string",
                "label": "string"
              },
              "position": "string"
            }
          ]
        },
        "season": {
          "near_event": {
            "id": "string",
            "label": "string"
          },
          "orbital_position": "number",
          "season": {
            "id": "string",
            "label": "string"
          }
        }
      },
      "examples": {
        "basic": {
          "request": "/sky?pulse=86400&format=json",
          "status": 200,
          "body": {
            "days_until_next_cofullness": 1,
            "image_prompt": "A greening night: the air carries new growth and lengthening light. Moons above the horizon: Jembor (Rust-brown, waning crescent) SW low; Zehembra (Gold-hued white, waning crescent) SW mid; Shunna (Ice-blue shimmer, first quarter) E low. Wanderers visible: Dramond (Warm amber, hazy rim) E low; Zelven (Banded cream and tawny) SW low. The active House of the Equinox is The Winged Pollinator. 7 fixed stars are visible, including Ilyrun, Kresh, Marnok and 4 others. This day, 2 moons are near-full together: Endor, Kanka. Next night of co-fullness: 1 day away.\n\nImage style: a monochrome ink-wash painting in the sumi-e tradition. black ink on warm rice paper, with sparing, graded tonal washes. asymmetric, with generous negative space and a low horizon, the night sky given room to breathe. loose, gestural brushwork; suggestion rather than detail.",
            "lore": {
              "fatunik_date": "Hesk, the 6th kell of Tarnel, Year -1531 of the Age of Embers",
              "fatunik_time": "Fifth Watch . shur 10 : keyt 1",
              "lunar_dates": [
                {
                  "calendar": {
                    "id": "untamed",
                    "label": "The Untamed Reckoning"
                  },
                  "lore_date": "the Rising, day 13 of Hask, Range 61 of the Reave -16"
                },
                {
                  "calendar": {
                    "id": "warren",
                    "label": "The Warren Count"
                  },
                  "lore_date": "the Dark, day 5 of Lilla, Litter 7 of the Wend -14"
                },
                {
                  "calendar": {
                    "id": "hearth",
                    "label": "The Hearth Count"
                  },
                  "lore_date": "the waning, the 55th day of Old Jem's -8809st turning"
                },
                {
                  "calendar": {
                    "id": "terpin_lunar",
                    "label": "The Terpin Lunar Count"
                  },
                  "lore_date": "Second Quarter, day 11 of Suneth, Year -1000 of the First Watching"
                }
              ],
              "terpin_date": "Emarn, the 1st deshan of Brennald, Year -1042 of the First Watching",
              "terpin_time": "First Watch . shur 1 : keyt 1"
            },
            "lunar_calendars": [
              {
                "calendar": {
                  "id": "untamed",
                  "label": "The Untamed Reckoning"
                },
                "day": 13,
                "has_turns": true,
                "long_count": -17,
                "lunation": -19262,
                "month": 11,
                "moon": {
                  "id": "sella",
                  "label": "Sella"
                },
                "short_count": 61,
                "turn": -1606
              },
              {
                "calendar": {
                  "id": "warren",
                  "label": "The Warren Count"
                },
                "day": 5,
                "has_turns": true,
                "long_count": -15,
                "lunation": -32947,
                "month": 3,
                "moon": {
                  "id": "shunna",
                  "label": "Shunna"
                },
                "short_count": 7,
                "turn": -1569
              },
              {
                "calendar": {
                  "id": "hearth",
                  "label": "The Hearth Count"
                },
                "day": 55,
                "has_turns": false,
                "long_count": null,
                "lunation": -8810,
                "month": null,
                "moon": {
                  "id": "jembor",
                  "label": "Jembor"
                },
                "short_count": null,
                "turn": null
              },
              {
                "calendar": {
                  "id": "terpin_lunar",
                  "label": "The Terpin Lunar Count"
                },
                "day": 11,
                "has_turns": true,
                "long_count": -9,
                "lunation": -11999,
                "month": 2,
                "moon": {
                  "id": "mean",
                  "label": "mean"
                },
                "short_count": 45,
                "turn": -1000
              }
            ],
            "night_summary": "A greening night: the air carries new growth and lengthening light. Moons above the horizon: Jembor (Rust-brown, waning crescent) SW low; Zehembra (Gold-hued white, waning crescent) SW mid; Shunna (Ice-blue shimmer, first quarter) E low. Wanderers visible: Dramond (Warm amber, hazy rim) E low; Zelven (Banded cream and tawny) SW low. The active House of the Equinox is The Winged Pollinator. 7 fixed stars are visible, including Ilyrun, Kresh, Marnok and 4 others. This day, 2 moons are near-full together: Endor, Kanka. Next night of co-fullness: 1 day away.",
            "query": {
              "astro_day": 2,
              "astro_time": "00:00:00",
              "fatunik_date": {
                "calendar_id": "fatunik",
                "day": 30,
                "month": 10,
                "year": -1531
              },
              "orbital_position": 0.0027379092558307886,
              "pulse": 86400,
              "terpin_date": {
                "calendar_id": "terpin",
                "day": 5,
                "month": 1,
                "year": -1042
              }
            },
            "scene": {
              "active_house": {
                "id": "winged_pollinator",
                "label": "The Winged Pollinator"
              },
              "bodies_up": [
                {
                  "altitude": 17.216475102845333,
                  "body_type": "moon",
                  "brightness": 0.022182520621395956,
                  "color": "Rust-brown",
                  "direction": "SW low",
                  "name": {
                    "id": "jembor",
                    "label": "Jembor"
                  },
                  "phase": "waning crescent"
                },
                {
                  "altitude": 24.500250524126162,
                  "body_type": "moon",
                  "brightness": 0.033050460149444905,
                  "color": "Gold-hued white",
                  "direction": "SW mid",
                  "name": {
                    "id": "zehembra",
                    "label": "Zehembra"
                  },
                  "phase": "waning crescent"
                },
                {
                  "altitude": 11.405832170997172,
                  "body_type": "moon",
                  "brightness": 0.1987908510739541,
                  "color": "Ice-blue shimmer",
                  "direction": "E low",
                  "name": {
                    "id": "shunna",
                    "label": "Shunna"
                  },
                  "phase": "first quarter"
                },
                {
                  "altitude": 14.438893936723328,
                  "body_type": "planet",
                  "brightness": 0.23844786907058346,
                  "color": "Warm amber, hazy rim",
                  "direction": "E low",
                  "name": {
                    "id": "dramond",
                    "label": "Dramond"
                  },
                  "phase": "first quarter"
                },
                {
                  "altitude": 7.623282550878364,
                  "body_type": "planet",
                  "brightness": 0.49619669972272573,
                  "color": "Banded cream and tawny",
                  "direction": "SW low",
                  "name": {
                    "id": "zelven",
                    "label": "Zelven"
                  },
                  "phase": "waning crescent"
                }
              ],
              "circumpolar_houses": [
                {
                  "id": "watchers_of_stillness",
                  "label": "The Watchers of Stillness"
                },
                {
                  "id": "chain_of_four",
                  "label": "The Chain of Four"
                }
              ],
              "co_fullness_tonight": {
                "count": 2,
                "moons": [
                  {
                    "id": "endor",
                    "label": "Endor"
                  },
                  {
                    "id": "kanka",
                    "label": "Kanka"
                  }
                ],
                "observable": true
              },
              "next_co_fullness": {
                "count": 3,
                "moons": [
                  {
                    "id": "endor",
                    "label": "Endor"
                  },
                  {
                    "id": "calumbra",
                    "label": "Calumbra"
                  },
                  {
                    "id": "kanka",
                    "label": "Kanka"
                  }
                ],
                "pulse": 172800
              },
              "stars_up": [
                {
                  "name": {
                    "id": "ilyrun",
                    "label": "Ilyrun"
                  },
                  "position": "The Pole Star, unwavering in the true north."
                },
                {
                  "name": {
                    "id": "kresh",
                    "label": "Kresh"
                  },
                  "position": "To the left of Ilyrun, rising and dipping like a kettle."
                },
                {
                  "name": {
                    "id": "marnok",
                    "label": "Marnok"
                  },
                  "position": "Below Ilyrun, clawing at the trees of the high north."
                },
                {
                  "name": {
                    "id": "sethera",
                    "label": "Sethera"
                  },
                  "position": "To the right of Ilyrun, where wanderers seem to gather."
                },
                {
                  "name": {
                    "id": "thalona",
                    "label": "Thalona"
                  },
                  "position": "In the east, just above the sowing fields."
                },
                {
                  "name": {
                    "id": "tursin",
                    "label": "Tursin"
                  },
                  "position": "In the northeast, halfway to the pole star."
                },
                {
                  "name": {
                    "id": "velkora",
                    "label": "Velkora"
                  },
                  "position": "In the west-northwest, between the Split Peaks."
                }
              ]
            },
            "season": {
              "near_event": {
                "id": "spring_equinox",
                "label": "Green Day"
              },
              "orbital_position": 0.0027379092558307886,
              "season": {
                "id": "greening",
                "label": "Greening"
              }
            }
          }
        },
        "localized": {
          "request": "/sky?pulse=86400&format=json&locale=es-ES",
          "status": 200,
          "body": {
            "days_until_next_cofullness": 1,
            "image_prompt": "A greening night: the air carries new growth and lengthening light. Moons above the horizon: Jembor (Rust-brown, waning crescent) SW low; Zehembra (Gold-hued white, waning crescent) SW mid; Shunna (Ice-blue shimmer, first quarter) E low. Wanderers visible: Dramond (Warm amber, hazy rim) E low; Zelven (Banded cream and tawny) SW low. The active House of the Equinox is The Winged Pollinator. 7 fixed stars are visible, including Ilyrun, Kresh, Marnok and 4 others. This day, 2 moons are near-full together: Endor, Kanka. Next night of co-fullness: 1 day away.\n\nImage style: a monochrome ink-wash painting in the sumi-e tradition. black ink on warm rice paper, with sparing, graded tonal washes. asymmetric, with generous negative space and a low horizon, the night sky given room to breathe. loose, gestural brushwork; suggestion rather than detail.",
            "lore": {
              "fatunik_date": "Jesek, el 6.\u00ba kel de T\u00e1rnel, A\u00f1o -1531 en la Era de las Brasas",
              "fatunik_time": "Quinta Guardia . shur 10 : keit 1",
              "lunar_dates": [
                {
                  "calendar": {
                    "id": "untamed",
                    "label": "El c\u00f3mputo salvaje"
                  },
                  "lore_date": "la Naciente, d\u00eda 13 de J\u00e1sek, Rendj 61 del Riv -16"
                },
                {
                  "calendar": {
                    "id": "warren",
                    "label": "La cuenta de la madriguera"
                  },
                  "lore_date": "la Oscura, d\u00eda 5 de Lila, Camada 7 del G\u00fcened -14"
                },
                {
                  "calendar": {
                    "id": "hearth",
                    "label": "La cuenta del hogar"
                  },
                  "lore_date": "la menguante, el 55.\u00ba d\u00eda de la vuelta -8809.\u00aa de Viejo Djem"
                },
                {
                  "calendar": {
                    "id": "terpin_lunar",
                    "label": "La cuenta lunar Terpin"
                  },
                  "lore_date": "Segundo Cuarto, d\u00eda 11 de S\u00fanet, A\u00f1o -1000 en la Primera Vigilia"
                }
              ],
              "terpin_date": "Emaren, el 1.\u00ba deshan de Br\u00e9nal, A\u00f1o -1042 en la Primera Vigilia",
              "terpin_time": "Primera Guardia . shur 1 : keit 1"
            },
            "lunar_calendars": [
              {
                "calendar": {
                  "id": "untamed",
                  "label": "El c\u00f3mputo salvaje"
                },
                "day": 13,
                "has_turns": true,
                "long_count": -17,
                "lunation": -19262,
                "month": 11,
                "moon": {
                  "id": "sella",
                  "label": "Sela"
                },
                "short_count": 61,
                "turn": -1606
              },
              {
                "calendar": {
                  "id": "warren",
                  "label": "La cuenta de la madriguera"
                },
                "day": 5,
                "has_turns": true,
                "long_count": -15,
                "lunation": -32947,
                "month": 3,
                "moon": {
                  "id": "shunna",
                  "label": "Shuna"
                },
                "short_count": 7,
                "turn": -1569
              },
              {
                "calendar": {
                  "id": "hearth",
                  "label": "La cuenta del hogar"
                },
                "day": 55,
                "has_turns": false,
                "long_count": null,
                "lunation": -8810,
                "month": null,
                "moon": {
                  "id": "jembor",
                  "label": "Dj\u00e9mbor"
                },
                "short_count": null,
                "turn": null
              },
              {
                "calendar": {
                  "id": "terpin_lunar",
                  "label": "La cuenta lunar Terpin"
                },
                "day": 11,
                "has_turns": true,
                "long_count": -9,
                "lunation": -11999,
                "month": 2,
                "moon": {
                  "id": "mean",
                  "label": "promedio"
                },
                "short_count": 45,
                "turn": -1000
              }
            ],
            "night_summary": "Una noche de reverdecer: el aire trae nuevo crecimiento y luz creciente. Lunas sobre el horizonte: Dj\u00e9mbor (Marr\u00f3n \u00f3xido, menguante) SO bajo; Zehembra (Blanco dorado, menguante) SO medio; Shuna (Destello azul hielo, cuarto creciente) E bajo. Errantes visibles: Dr\u00e1mun (\u00c1mbar c\u00e1lido, borde brumoso) E bajo; Zelven (Bandas de crema y leonado) SO bajo. La Casa activa del Equinoccio es El polinizador alado. 7 estrellas fijas son visibles, incluyendo Ilirun, Kresh, M\u00e1rnok y 4 m\u00e1s. Este d\u00eda, 2 lunas est\u00e1n casi llenas al mismo tiempo: \u00c9ndor, Kanka. Pr\u00f3xima noche de coplenitud: 1 d\u00eda de distancia.",
            "query": {
              "astro_day": 2,
              "astro_time": "00:00:00",
              "fatunik_date": {
                "calendar_id": "fatunik",
                "day": 30,
                "month": 10,
                "year": -1531
              },
              "orbital_position": 0.0027379092558307886,
              "pulse": 86400,
              "terpin_date": {
                "calendar_id": "terpin",
                "day": 5,
                "month": 1,
                "year": -1042
              }
            },
            "scene": {
              "active_house": {
                "id": "winged_pollinator",
                "label": "El polinizador alado"
              },
              "bodies_up": [
                {
                  "altitude": 17.216475102845333,
                  "body_type": "moon",
                  "brightness": 0.022182520621395956,
                  "color": "Marr\u00f3n \u00f3xido",
                  "direction": "SO bajo",
                  "name": {
                    "id": "jembor",
                    "label": "Dj\u00e9mbor"
                  },
                  "phase": "menguante"
                },
                {
                  "altitude": 24.500250524126162,
                  "body_type": "moon",
                  "brightness": 0.033050460149444905,
                  "color": "Blanco dorado",
                  "direction": "SO medio",
                  "name": {
                    "id": "zehembra",
                    "label": "Zehembra"
                  },
                  "phase": "menguante"
                },
                {
                  "altitude": 11.405832170997172,
                  "body_type": "moon",
                  "brightness": 0.1987908510739541,
                  "color": "Destello azul hielo",
                  "direction": "E bajo",
                  "name": {
                    "id": "shunna",
                    "label": "Shuna"
                  },
                  "phase": "cuarto creciente"
                },
                {
                  "altitude": 14.438893936723328,
                  "body_type": "planet",
                  "brightness": 0.23844786907058346,
                  "color": "\u00c1mbar c\u00e1lido, borde brumoso",
                  "direction": "E bajo",
                  "name": {
                    "id": "dramond",
                    "label": "Dr\u00e1mun"
                  },
                  "phase": "cuarto creciente"
                },
                {
                  "altitude": 7.623282550878364,
                  "body_type": "planet",
                  "brightness": 0.49619669972272573,
                  "color": "Bandas de crema y leonado",
                  "direction": "SO bajo",
                  "name": {
                    "id": "zelven",
                    "label": "Zelven"
                  },
                  "phase": "menguante"
                }
              ],
              "circumpolar_houses": [
                {
                  "id": "watchers_of_stillness",
                  "label": "Los Vigilantes de la quietud"
                },
                {
                  "id": "chain_of_four",
                  "label": "La cadena de los cuatro"
                }
              ],
              "co_fullness_tonight": {
                "count": 2,
                "moons": [
                  {
                    "id": "endor",
                    "label": "\u00c9ndor"
                  },
                  {
                    "id": "kanka",
                    "label": "Kanka"
                  }
                ],
                "observable": true
              },
              "next_co_fullness": {
                "count": 3,
                "moons": [
                  {
                    "id": "endor",
                    "label": "\u00c9ndor"
                  },
                  {
                    "id": "calumbra",
                    "label": "Calumbra"
                  },
                  {
                    "id": "kanka",
                    "label": "Kanka"
                  }
                ],
                "pulse": 172800
              },
              "stars_up": [
                {
                  "name": {
                    "id": "ilyrun",
                    "label": "Ilirun"
                  },
                  "position": "La Estrella Polar, inquebrantable en el verdadero norte."
                },
                {
                  "name": {
                    "id": "kresh",
                    "label": "Kresh"
                  },
                  "position": "A la izquierda de Ilirun, subiendo y bajando como una tetera."
                },
                {
                  "name": {
                    "id": "marnok",
                    "label": "M\u00e1rnok"
                  },
                  "position": "Debajo de Ilirun, ara\u00f1ando los \u00e1rboles del alto norte."
                },
                {
                  "name": {
                    "id": "sethera",
                    "label": "Setra"
                  },
                  "position": "A la derecha de Ilirun, donde los errantes parecen reunirse."
                },
                {
                  "name": {
                    "id": "thalona",
                    "label": "Thalona"
                  },
                  "position": "En el este, justo sobre los campos de siembra."
                },
                {
                  "name": {
                    "id": "tursin",
                    "label": "T\u00farsin"
                  },
                  "position": "En el noreste, a medio camino de la Estrella Polar."
                },
                {
                  "name": {
                    "id": "velkora",
                    "label": "Velkora"
                  },
                  "position": "En el oeste-noroeste, entre los Picos Partidos."
                }
              ]
            },
            "season": {
              "near_event": {
                "id": "spring_equinox",
                "label": "D\u00eda Verde"
              },
              "orbital_position": 0.0027379092558307886,
              "season": {
                "id": "greening",
                "label": "Reverdecer"
              }
            }
          }
        },
        "error": {
          "request": "/sky?pulse=not_a_number&format=json",
          "status": 400,
          "body": {
            "error": {
              "code": "invalid_pulse_value",
              "message": "Valor de pulso inv\u00e1lido: 'not_a_number'; introduce un n\u00famero."
            }
          }
        }
      }
    }
  },
  "error_codes": [
    {
      "code": "duration_min",
      "message_template": "Duration (Days) must be at least 1."
    },
    {
      "code": "duration_required",
      "message_template": "Duration (Days) is required."
    },
    {
      "code": "end_pulse_required",
      "message_template": "End pulse is required."
    },
    {
      "code": "ephemeris_range_invalid",
      "message_template": "Invalid ephemeris range: {detail}"
    },
    {
      "code": "invalid_astro_day",
      "message_template": "Invalid Astro day: {value} \u2014 enter an integer."
    },
    {
      "code": "invalid_duration_days",
      "message_template": "Invalid duration_days {value} \u2014 enter an integer."
    },
    {
      "code": "invalid_fatunik_date",
      "message_template": "Invalid Fatunik date: {detail}"
    },
    {
      "code": "invalid_format",
      "message_template": "Invalid format {value} \u2014 use 'json'."
    },
    {
      "code": "invalid_locale",
      "message_template": "Invalid locale {value} \u2014 use one of: {values}."
    },
    {
      "code": "invalid_prefixed_astro_day",
      "message_template": "Invalid {prefix}astro_day {value} \u2014 enter an integer."
    },
    {
      "code": "invalid_prefixed_fatunik_date",
      "message_template": "Invalid {prefix}Fatunik date: {detail}"
    },
    {
      "code": "invalid_prefixed_pulse",
      "message_template": "Invalid {prefix}pulse {value} \u2014 enter a number."
    },
    {
      "code": "invalid_prefixed_terpin_date",
      "message_template": "Invalid {prefix}Terpin date: {detail}"
    },
    {
      "code": "invalid_prefixed_time_of_day",
      "message_template": "Invalid {prefix}time_of_day {value} \u2014 enter HH:MM:SS (00:00:00\u201323:59:59)."
    },
    {
      "code": "invalid_profile",
      "message_template": "Invalid profile {value} \u2014 use 'scribal', 'kinematic', or 'both'."
    },
    {
      "code": "invalid_pulse_value",
      "message_template": "Invalid pulse value: {value} \u2014 enter a number."
    },
    {
      "code": "invalid_step_minutes",
      "message_template": "Invalid step_minutes {value} \u2014 enter an integer."
    },
    {
      "code": "invalid_terpin_date",
      "message_template": "Invalid Terpin date: {detail}"
    },
    {
      "code": "invalid_time_of_day",
      "message_template": "Invalid time-of-day: {value} \u2014 enter HH:MM:SS (00:00:00\u201323:59:59)."
    },
    {
      "code": "missing_ephemeris_query",
      "message_template": "Start time and step parameters are required."
    },
    {
      "code": "missing_moment_query",
      "message_template": "A pulse, astro_day, or calendar date parameter is required."
    },
    {
      "code": "start_time_required",
      "message_template": "Start time is required."
    },
    {
      "code": "step_exceeds_duration",
      "message_template": "Step ({step_min} min) equals or exceeds the total duration ({span_min} min) \u2014 reduce Step or increase Duration (Days)."
    },
    {
      "code": "step_required",
      "message_template": "Step (Astro minutes) is required."
    },
    {
      "code": "unknown_param",
      "message_template": "Unknown parameter: {param}."
    }
  ]
}
