diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 634bdfea..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,20 +0,0 @@ - -# 1.0.0 (2017-05-25) - - -### Bug Fixes - -* **cp-frontend:** gracefully handle multiple postinstall executions ([73899b2](https://github.com/yldio/joyent-portal/commit/73899b2)) -* **cp-frontend:** use `postinstall` hook to patch react-scripts ([d2ac10a](https://github.com/yldio/joyent-portal/commit/d2ac10a)) -* **styled-is:** correct package entrypoints ([44a2f2e](https://github.com/yldio/joyent-portal/commit/44a2f2e)) -* **ui-toolkit:** compile on postinstall ([7bf95fd](https://github.com/yldio/joyent-portal/commit/7bf95fd)) -* **ui-toolkit:** copy fonts before compiling ([19f3678](https://github.com/yldio/joyent-portal/commit/19f3678)) - - -### Features - -* **cp-frontend:** Move portal query to header, display result, return user from mock server ([5ffa07a](https://github.com/yldio/joyent-portal/commit/5ffa07a)) -* **cp-frontend,ui-toolkit:** style inheritance using `.extend` (#458) ([f3e531d](https://github.com/yldio/joyent-portal/commit/f3e531d)) - - - diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md deleted file mode 100644 index 295920d1..00000000 --- a/GETTING_STARTED.md +++ /dev/null @@ -1,138 +0,0 @@ -# Getting Started - -## Setup the project - -**Install Node.js**, preferably 8.0: - -``` -λ brew install node -``` - -with [n](https://github.com/tj/n): - -``` -λ n 8.0.0 -``` - -**Install Yarn**: - -``` -λ npm install -g yarn -``` - -**Install ZMQ**: - -``` -λ brew install zmq -``` - -**Clone repo**: - -``` -λ git clone git@github.com:yldio/joyent-portal.git -Cloning into 'joyent-portal'... -remote: Counting objects: 13702, done. -remote: Compressing objects: 100% (146/146), done. -remote: Total 13702 (delta 89), reused 138 (delta 53), pack-reused 13491 -Receiving objects: 100% (13702/13702), 15.08 MiB | 5.44 MiB/s, done. -Resolving deltas: 100% (8824/8824), done. -Downloading legacy/design/ui-library.sketch (8.48 MB) -Checking out files: 100% (1795/1795), done. -λ cd joyent-portal -``` - -**Install dependendencies**: - -``` -joyent-portal:master λ yarn -yarn install v0.24.6 -[1/5] 🔍 Resolving packages... -[2/5] 🚚 Fetching packages... -[3/5] 🔗 Linking dependencies... -[4/5] 📃 Building fresh packages... -[5/5] ♻️ Cleaning modules... -$ redrun -s clean bootstrap -> lerna clean --yes && lerna bootstrap -lerna info version 2.0.0-rc.5 -lerna info versioning independent -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/babel-preset/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/cloudapi-gql/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/cp-frontend/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/cp-gql-mock-server/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/cp-gql-schema/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/cp-rdb-bootstrap/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/docker-compose-client/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/eslint-config/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/normalized-styled-components/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/portal-api/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/portal-data/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/pseudo-json-ast/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/pseudo-yaml-ast/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/remcalc/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/rnd-id/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/styled-is/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/ui-toolkit/node_modules -lerna info clean removing /Users/ramitos/dev/yld/joyent-portal/packages/unitcalc/node_modules -lerna success clean finished -lerna info version 2.0.0-rc.5 -lerna info versioning independent -lerna info Bootstrapping 18 packages -lerna info lifecycle preinstall -lerna info Installing external dependencies -lerna info Symlinking packages and binaries -lerna info lifecycle postinstall -lerna info lifecycle prepublish -lerna success Bootstrapped 18 packages -✨ Done in 297.44s. -``` - -## Start dev environment - - -**Start mock server**: - -``` -joyent-portal:master λ cd packages/cp-gql-mock-server -cp-gql-mock-server:master* λ npm run start - -> joyent-cp-gql-mock-server@1.0.4 start /Users/ramitos/dev/yld/joyent-portal/packages/cp-gql-mock-server -> node src/index.js - -server started at http://0.0.0.0:3000 -``` - -**Start UI Toolkit**: - -``` -joyent-portal:master* λ cd packages/ui-toolkit -ui-toolkit:master* λ npm run watch - -> joyent-ui-toolkit@1.1.0 watch /Users/ramitos/dev/yld/joyent-portal/packages/ui-toolkit -> cross-env NODE_ENV=development redrun -s -c copy-fonts "compile --watch" - -> rm -rf dist; mkdir -p dist/typography; cp -r src/typography/libre-franklin dist/typography || true && babel src --out-dir dist --source-maps inline --watch || true -src/anchor/index.js -> dist/anchor/index.js -... -``` - -**Start Frontend**: - -``` -joyent-portal:master* λ cd packages/cp-frontend -cp-frontend:master* λ npm run start - -> joyent-cp-frontend@1.1.0 start /Users/ramitos/dev/yld/joyent-portal/packages/cp-frontend -> PORT=3069 react-scripts start - -Starting the development server... - -Compiled successfully! - -You can now view joyent-cp-frontend in the browser. - - Local: http://localhost:3069/ - On Your Network: http://192.168.1.13:3069/ - -Note that the development build is not optimized. -To create a production build, use yarn run build. -``` \ No newline at end of file diff --git a/README.md b/README.md index ab6f370f..21483de8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -![CoPilot Logo](./copilot.png) - - [![CircleCI](https://img.shields.io/circleci/project/github/yldio/joyent-portal/master.svg)](https://circleci.com/gh/yldio/joyent-portal) [![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0) [![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg)](https://github.com/RichardLitt/standard-readme) @@ -21,64 +18,6 @@ ## Install -### Set local environment variables - -There is a [`setup.sh`](./setup.sh) script that is used to create an environment (`_env`) file that will contain the keys you use to connect to Triton as well as the keys used to secure the CoPilot installation. In order for this to work correctly you will need to first load the Triton environment variables with the `triton profile` you plan to use. Below is an example of setting these environment variables using the `triton` CLI. - -```sh -$ eval "$(triton env)" -``` - -Additionally, you will need a Certificate Authority certificate file, a server certificate, and a server key file. In the subsection below is an example of generating these files. - -### Generating Certificates to Secure CoPilot - -To help simplify the creation of certificates there is a _gen-keys.sh_ script. Run it and answer the prompts to generate all of the required keys to secure CoPilot. - -```sh -$ ./gen-keys.sh -``` - -After the client certificate is installed, you may need to restart your browser. - -### Generate `_env` file from _setup.sh_ - -Execute the _setup.sh_ script with the path to your key files. - -```sh -$ ./setup.sh ~/path/to/TRITON_PRIVATE_KEY keys-test.com/ca.crt keys-test.com/server.key keys-test.com/server.crt -``` - -## Usage - -You have 3 options for where to run CoPilot. You can either run it using the published docker images locally, or on Triton. The last option is to build the docker images and run docker containers from these locally built images. - -### Start CoPilot using published docker images locally - -```sh -$ docker-compose up -d -``` - -Navigate to [https://localhost]() to load the dashboard. - - -### Deploy and run CoPilot on Triton - -```sh -$ docker-compose -f triton-compose.yml up -d -``` - -Optionally use [_triton-docker_](https://github.com/joyent/triton-docker-cli) -```sh -$ triton-compose -f triton-compose.yml up -d -``` - -### Build and run CoPilot locally - -```sh -$ docker-compose -f local-compose.yml up -d -``` - ## Contribute See [the contribute file](CONTRIBUTING.md)! diff --git a/copilot.png b/copilot.png deleted file mode 100644 index ef781ee3..00000000 Binary files a/copilot.png and /dev/null differ diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index fdbe5cce..00000000 --- a/docker-compose.yml +++ /dev/null @@ -1,114 +0,0 @@ -############################################################################# -# CONSUL -# -# Consul is the service catalog that helps discovery between the components -# Change "-bootstrap" to "-bootstrap-expect 3", then scale to 3 or more to -# turn this into an HA Consul raft. -############################################################################# -consul: - image: autopilotpattern/consul:0.7.2-r0.8 - command: > - /usr/local/bin/containerpilot - /bin/consul agent -server - -config-dir=/etc/consul - -log-level=err - -bootstrap-expect 1 - -ui-dir /ui - restart: always - mem_limit: 128m - ports: - - 8500:8500 - dns: - - 127.0.0.1 - -############################################################################# -# PROMETHEUS -# -# Prometheus is an open source performance monitoring tool -# it is included here for demo purposes and is not required -############################################################################# -prometheus: - image: autopilotpattern/prometheus:1.7.1-r20 - restart: always - mem_limit: 1g - ports: - - 9090:9090 - links: - - consul:consul - environment: - - CONSUL=consul - - CONSUL_AGENT=1 - dns: - - 127.0.0.1 - - -############################################################################# -# FRONTEND -############################################################################# -frontend: - image: joyent/copilot-frontend:1.0.0 - mem_limit: 512m - links: - - consul:consul - env_file: - - _env - environment: - - CONSUL=consul - - PORT=443 - ports: - - "80:80" - - "443:443" - dns: - - 127.0.0.1 - - -############################################################################# -# BACKEND -############################################################################# -api: - image: joyent/copilot-api:1.8.8 - mem_limit: 512m - links: - - consul:consul - - rethinkdb:rethinkdb - env_file: - - _env - environment: - - CONSUL=consul - - PORT=3000 - - RETHINK_HOST=rethinkdb - expose: - - 3000 - -# Docker-compose wrapper -# Create _env file from running ./setup.sh -compose-api: - image: joyent/copilot-compose:1.0.0 - links: - - consul:consul - expose: - - 4242 - env_file: - - _env - environment: - - CONSUL=consul - restart: always - -rethinkdb: - image: autopilotpattern/rethinkdb:2.3.5r1 - restart: always - mem_limit: 1g - links: - - consul:consul - env_file: - - _env - environment: - - CONSUL=consul - - CONSUL_AGENT=1 - ports: - - 8080:8080 - expose: - - 28015 - - 29015 - dns: - - 127.0.0.1 diff --git a/docker/api/Dockerfile b/docker/api/Dockerfile deleted file mode 100644 index 862447b7..00000000 --- a/docker/api/Dockerfile +++ /dev/null @@ -1,46 +0,0 @@ -FROM node:8-alpine - -# Install dependencies -RUN set -x \ - && apk update \ - && apk add --update curl bash build-base python zeromq-dev openssh \ - && apk upgrade \ - && rm -rf /var/cache/apk/* - -# Install Consul agent -ENV CONSUL_VERSION 0.7.0 -ENV CONSUL_CHECKSUM b350591af10d7d23514ebaa0565638539900cdb3aaa048f077217c4c46653dd8 -RUN curl --retry 7 --fail -vo /tmp/consul.zip "https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip" \ - && echo "${CONSUL_CHECKSUM} /tmp/consul.zip" | sha256sum -c \ - && unzip /tmp/consul -d /usr/local/bin \ - && rm /tmp/consul.zip \ - && mkdir /config - -# Install Containerpilot -ENV CONTAINERPILOT_VERSION 3.4.2 -RUN export CONTAINERPILOT_CHECKSUM=5c99ae9ede01e8fcb9b027b5b3cb0cfd8c0b8b88 \ - && export archive=containerpilot-${CONTAINERPILOT_VERSION}.tar.gz \ - && curl -Lso /tmp/${archive} \ - "https://github.com/joyent/containerpilot/releases/download/${CONTAINERPILOT_VERSION}/${archive}" \ - && echo "${CONTAINERPILOT_CHECKSUM} /tmp/${archive}" | sha1sum -c \ - && tar zxf /tmp/${archive} -C /bin \ - && rm /tmp/${archive} - -# Copy required files -RUN mkdir -p /opt/app/ -COPY *.js /opt/app/ -COPY package.json /opt/app/ -COPY bin /bin -COPY etc /etc -ENV CONTAINERPILOT /etc/containerpilot.json5 - - -# Install dependencies - -WORKDIR /opt/app/ - -ENV BUILD=production -ENV NODE_ENV=production -RUN npm install - -CMD ["containerpilot"] diff --git a/docker/api/bin/prestart.sh b/docker/api/bin/prestart.sh deleted file mode 100755 index 04fcba52..00000000 --- a/docker/api/bin/prestart.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -# Copy creds from env vars to files on disk -if [ -n ${!TRITON_CREDS_PATH} ] \ - && [ -n ${!TRITON_CA} ] \ - && [ -n ${!TRITON_CERT} ] \ - && [ -n ${!TRITON_KEY} ] -then - mkdir -p ${TRITON_CREDS_PATH} - echo -e "${TRITON_CA}" | tr '#' '\n' > ${TRITON_CREDS_PATH}/ca.pem - echo -e "${TRITON_CERT}" | tr '#' '\n' > ${TRITON_CREDS_PATH}/cert.pem - echo -e "${TRITON_KEY}" | tr '#' '\n' > ${TRITON_CREDS_PATH}/key.pem -fi - -eval `/usr/bin/ssh-agent -s` -mkdir -p ~/.ssh -echo -e "${SDC_KEY_PUB}" | tr '#' '\n' > ~/.ssh/id_rsa.pub -echo -e "${SDC_KEY}" | tr '#' '\n' > ~/.ssh/id_rsa -chmod 400 ~/.ssh/id_rsa.pub -chmod 400 ~/.ssh/id_rsa -ssh-add ~/.ssh/id_rsa diff --git a/docker/api/bin/sensors.sh b/docker/api/bin/sensors.sh deleted file mode 100755 index 5c4774be..00000000 --- a/docker/api/bin/sensors.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash -set -e - -help() { - echo 'Uses cli tools free and top to determine current CPU and memory usage' - echo 'for the telemetry service.' -} - -# memory usage in percent -memory() { - # awk oneliner to get memory usage - # free -m | awk 'NR==2{printf "Memory Usage: %s/%sMB (%.2f%%)\n", $3,$2,$3*100/$2 }' - # output: - # Memory Usage: 15804/15959MB (99.03%) - local memory=$(free -m | awk 'NR==2{printf "%.2f", $3*100/$2 }') - /bin/containerpilot -putmetric "api_memory_percent=$memory" -} - -# cpu load -cpu() { - # oneliner to display cpu load - # top -bn1 | grep load | awk '{printf "CPU Load: %.2f\n", $(NF-2)}' - local cpuload=$(uptime | awk '{printf "%.2f", $6}') - /bin/containerpilot -putmetric "api_cpu_load=$cpuload" -} - -diskusage() { - local usage=$(df -P | grep '/$' | awk 'NR=2{print $3}' | sed 's/[^0-9\.]*//g') - /bin/containerpilot -putmetric "api_disk_usage=$usage" -} - -diskcapacity() { - local capacity=$(df -P | grep '/$' | awk 'NR=2{print $2}' | sed 's/[^0-9\.]*//g') - /bin/containerpilot -putmetric "api_disk_capacity=$capacity" -} - -cmd=$1 -if [ ! -z "$cmd" ]; then - shift 1 - $cmd "$@" - exit -fi - -help diff --git a/docker/api/bootstrap-data.js b/docker/api/bootstrap-data.js deleted file mode 100644 index 4478472d..00000000 --- a/docker/api/bootstrap-data.js +++ /dev/null @@ -1,142 +0,0 @@ -'use strict'; - -const Data = require('portal-api/lib/data'); -const Fs = require('fs'); -const Path = require('path'); -const Piloted = require('piloted'); -const Triton = require('triton'); -const Url = require('url'); - - -let timeoutId; -const loadConfig = function () { - const docker = Piloted.service('docker-compose-api'); - const rethink = Piloted.service('rethinkdb'); - - const retry = () => { - timeoutId = setTimeout(() => { - timeoutId = null; - Piloted.refresh(); - }, 1000); - }; - - if (docker && rethink) { - bootstrap({ docker, rethink }, (err) => { - if (err) { - console.error(err); - return retry(); - } - - process.exit(0); - }); - } else if (!timeoutId) { - retry(); - } -}; - -Piloted.on('refresh', () => { - loadConfig(); -}); - - -const bootstrap = function ({ docker, rethink }, cb) { - const settings = { - db: { - host: rethink.address - }, - docker: { - protocol: 'https', - host: docker.address, - port: docker.port, - ca: process.env.DOCKER_CERT_PATH - ? Fs.readFileSync(Path.join(process.env.DOCKER_CERT_PATH, 'ca.pem')) - : undefined, - cert: process.env.DOCKER_CERT_PATH - ? Fs.readFileSync(Path.join(process.env.DOCKER_CERT_PATH, 'cert.pem')) - : undefined, - key: process.env.DOCKER_CERT_PATH - ? Fs.readFileSync(Path.join(process.env.DOCKER_CERT_PATH, 'key.pem')) - : undefined - }, - triton: { - url: process.env.SDC_URL, - account: process.env.SDC_ACCOUNT, - keyId: process.env.SDC_KEY_ID - } - }; - - const data = new Data(settings); - const region = process.env.TRITON_DC || 'us-sw-1'; - - data.connect((err) => { - if (err) { - return cb(err); - } - - data.getDatacenters((err, datacenters) => { - if (err) { - return cb(err); - } - - // Don't continue since data is already bootstrapped - if (datacenters && datacenters.length) { - return cb(); - } - - data.createDatacenter({ - region, - name: region - }, (err, datacenter) => { - if (err) { - return cb(err); - } - - Triton.createClient({ - profile: settings.triton - }, (err, { cloudapi }) => { - if (err) { - return cb(err); - } - - cloudapi.getAccount((err, { - id, - firstName, - lastName, - email, - login - }) => { - if (err) { - return cb(err); - } - - data.createUser({ - tritonId: id, - firstName, - lastName, - email, - login - }, (err, user) => { - if (err) { - return cb(err); - } - - data.createPortal({ - user, - datacenter - }, (err, portal) => { - if (err) { - return cb(err); - } - - console.log('data bootstrapped'); - cb(); - }); - }); - }); - }); - }); - }); - }); -}; - -loadConfig(); diff --git a/docker/api/etc/containerpilot.json5 b/docker/api/etc/containerpilot.json5 deleted file mode 100644 index c0f14123..00000000 --- a/docker/api/etc/containerpilot.json5 +++ /dev/null @@ -1,168 +0,0 @@ -{ - consul: 'localhost:8500', - jobs: [ - { - name: 'setup-config', - exec: '/bin/prestart.sh' - }, - { - name: 'bootstrap', - exec: 'node bootstrap-data.js', - when: { - source: 'setup-config', - once: 'exitSuccess' - } - }, - { - name: 'api', - port: {{.PORT}}, - exec: 'node server.js', - health: { - exec: '/usr/bin/curl -o /dev/null --fail -s http://localhost:{{.PORT}}/check-it-out', - interval: 5, - ttl: 5 - }, - when: { - source: 'bootstrap', - once: 'exitSuccess' - }, - restarts: 'unlimited' - }, - { - name: 'consul-agent', - exec: ['/usr/local/bin/consul', 'agent', - '-data-dir=/data', - '-config-dir=/config', - '-log-level=err', - '-rejoin', - '-retry-join', '{{ .CONSUL | default "consul" }}', - '-retry-max', '20', - '-retry-interval', '5s'], - restarts: 'unlimited' - }, - { - name: 'sensor_memory_usage', - exec: '/bin/sensors.sh memory', - timeout: '5s', - when: { - interval: '5s' - }, - restarts: 'unlimited' - }, - { - name: 'sensor_cpu_load', - exec: '/bin/sensors.sh cpu', - timeout: '5s', - when: { - interval: '5s' - }, - restarts: 'unlimited' - }, - { - name: 'sensor_disk_capacity', - exec: '/bin/sensors.sh diskcapacity', - timeout: '5s', - when: { - interval: '60s' - }, - restarts: 'unlimited' - }, - { - name: 'sensor_disk_usage', - exec: '/bin/sensors.sh diskusage', - timeout: '5s', - when: { - interval: '60s' - }, - restarts: 'unlimited' - }, - { - name: 'onchange-compose-api', - exec: 'pkill -SIGHUP node', - when: { - source: 'watch.docker-compose-api', - each: 'changed' - } - }, - { - name: 'onchange-rethinkdb', - exec: 'pkill -SIGHUP node', - when: { - source: 'watch.rethinkdb', - each: 'changed' - } - } - ], - watches: [ - { - name: 'docker-compose-api', - interval: 3 - }, - { - name: 'rethinkdb', - interval: 3 - } - ], - telemetry: { - port: 9090, - tags: ['op'], - metrics: [ - { - namespace: 'api', - subsystem: 'memory', - name: 'percent', - help: 'Percentage of memory used', - type: 'gauge' - }, - { - namespace: 'api', - subsystem: 'cpu', - name: 'load', - help: 'CPU load', - type: 'gauge' - }, - { - namespace: 'api', - subsystem: 'disk', - name: 'capacity', - help: 'Disk capacity', - type: 'gauge' - }, - { - namespace: 'api', - subsystem: 'disk', - name: 'usage', - help: 'Disk usage', - type: 'gauge' - }, - { - namespace: 'api', - subsystem: 'request', - name: 'concurrent', - help: 'Number of concurrent requests', - type: 'gauge' - }, - { - namespace: 'api', - subsystem: 'process', - name: 'up_time', - help: 'Process up time', - type: 'counter' - }, - { - namespace: 'api', - subsystem: 'process', - name: 'mem_rss', - help: 'Process memory RSS usage', - type: 'gauge' - }, - { - namespace: 'api', - subsystem: 'process', - name: 'heap_used', - help: 'Process heap usage', - type: 'gauge' - } - ] - } -} diff --git a/docker/api/package.json b/docker/api/package.json deleted file mode 100644 index 5c2a4c80..00000000 --- a/docker/api/package.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "api", - "version": "1.0.0", - "description": "", - "main": "./server.js", - "scripts": { - "start": "node server.js" - }, - "keywords": [], - "author": "wyatt", - "license": "MPL-2.0", - "dependencies": { - "boom": "^5.1.0", - "brule": "^2.0.0", - "good": "^7.2.0", - "good-console": "^6.4.0", - "good-squeeze": "^5.0.2", - "graphi": "^2.3.0", - "hapi": "^16.6.0", - "hoek": "^4.1.1", - "joi": "^10.6.0", - "joyent-cp-gql-schema": "^1.7.0", - "piloted": "^3.1.1", - "portal-api": "^1.8.8", - "toppsy": "^1.1.0", - "triton": "^5.2.0" - } -} diff --git a/docker/api/server.js b/docker/api/server.js deleted file mode 100644 index 4ceb7cbc..00000000 --- a/docker/api/server.js +++ /dev/null @@ -1,137 +0,0 @@ -'use strict'; - -const Brule = require('brule'); -const Fs = require('fs'); -const Good = require('good'); -const Hapi = require('hapi'); -const Path = require('path'); -const Piloted = require('piloted'); -const Portal = require('portal-api'); -const Toppsy = require('toppsy'); -const Url = require('url'); - - -let started = false; -let timeoutId; -const loadConfig = function () { - const docker = Piloted.service('docker-compose-api'); - const rethink = Piloted.service('rethinkdb'); - - if (docker && rethink && !started) { - started = true; - startServer({ docker, rethink }); - } else if (!started && !timeoutId) { - timeoutId = setTimeout(() => { - timeoutId = null; - Piloted.refresh(); - }, 1000); - } -}; - -Piloted.on('refresh', () => { - loadConfig(); -}); - - -const startServer = function ({ docker, rethink }) { - const port = process.env.PORT ? Number.parseInt(process.env.PORT, 10) : 3000; - - const server = new Hapi.Server(); - server.connection({ port }); - - const portalOptions = { - data: { - db: { - host: rethink.address - }, - docker: { - protocol: 'https', - host: docker.address, - port: docker.port, - ca: process.env.DOCKER_CERT_PATH - ? Fs.readFileSync(Path.join(process.env.DOCKER_CERT_PATH, 'ca.pem')) - : undefined, - cert: process.env.DOCKER_CERT_PATH - ? Fs.readFileSync(Path.join(process.env.DOCKER_CERT_PATH, 'cert.pem')) - : undefined, - key: process.env.DOCKER_CERT_PATH - ? Fs.readFileSync(Path.join(process.env.DOCKER_CERT_PATH, 'key.pem')) - : undefined - }, - triton: { - url: process.env.SDC_URL, - account: process.env.SDC_ACCOUNT, - keyId: process.env.SDC_KEY_ID - } - }, - watch: { - url: process.env.SDC_URL, - account: process.env.SDC_ACCOUNT, - keyId: process.env.SDC_KEY_ID - } - }; - - const goodOptions = { - ops: { - interval: 1000 - }, - reporters: { - consoleReporter: [ - { - module: 'good-squeeze', - name: 'Squeeze', - args: [{ response: '*', error: '*' }] - }, - { - module: 'good-console' - }, - 'stdout' - ] - } - }; - - server.register( - [ - Brule, - { - register: Good, - options: goodOptions - }, - { - register: Portal, - options: portalOptions - }, - { - register: Toppsy, - options: { namespace: 'portal', subsystem: 'api' } - } - ], - (err) => { - handlerError(err); - server.start((err) => { - handlerError(err); - console.log(`server started at http://localhost:${server.info.port}`); - }); - } - ); -}; - -const handlerError = function (err) { - if (err) { - console.error(err); - console.error(err.stack); - process.exit(1); - } -}; - -process.on('uncaughtException', (err) => { - console.error(err); - console.error(err.stack); -}); - -process.on('unhandledRejection', (err) => { - console.error(err); - console.error(err.stack); -}); - -loadConfig(); diff --git a/docker/compose-api/Dockerfile b/docker/compose-api/Dockerfile deleted file mode 100644 index 563eaf27..00000000 --- a/docker/compose-api/Dockerfile +++ /dev/null @@ -1,29 +0,0 @@ -FROM ramitos/docker-compose-api:1.0.0 - -RUN apk add --update bash - -RUN export CONSUL_VERSION=0.7.0 \ - && export CONSUL_CHECKSUM=b350591af10d7d23514ebaa0565638539900cdb3aaa048f077217c4c46653dd8 \ - && curl --retry 7 --fail -vo /tmp/consul.zip "https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip" \ - && echo "${CONSUL_CHECKSUM} /tmp/consul.zip" | sha256sum -c \ - && unzip /tmp/consul -d /usr/local/bin \ - && rm /tmp/consul.zip \ - && mkdir /config - -# Install Containerpilot -ENV CONTAINERPILOT_VERSION 3.4.1 -RUN export CONTAINERPILOT_CHECKSUM=4d13cfb345de86135ab2271b77516c6b6a7bed3a \ - && export archive=containerpilot-${CONTAINERPILOT_VERSION}.tar.gz \ - && curl -Lso /tmp/${archive} \ - "https://github.com/joyent/containerpilot/releases/download/${CONTAINERPILOT_VERSION}/${archive}" \ - && echo "${CONTAINERPILOT_CHECKSUM} /tmp/${archive}" | sha1sum -c \ - && tar zxf /tmp/${archive} -C /bin \ - && rm /tmp/${archive} - -# Add Containerpilot configuration -COPY etc/containerpilot.json /etc -ENV CONTAINERPILOT /etc/containerpilot.json -COPY bin /bin - -ENTRYPOINT [] -CMD ["containerpilot"] diff --git a/docker/compose-api/bin/prestart.sh b/docker/compose-api/bin/prestart.sh deleted file mode 100755 index 795c45b4..00000000 --- a/docker/compose-api/bin/prestart.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -# Copy creds from env vars to files on disk -if [ -n ${!TRITON_CREDS_PATH} ] \ - && [ -n ${!TRITON_CA} ] \ - && [ -n ${!TRITON_CERT} ] \ - && [ -n ${!TRITON_KEY} ] -then - mkdir -p ${TRITON_CREDS_PATH} - echo -e "${TRITON_CA}" | tr '#' '\n' > ${TRITON_CREDS_PATH}/ca.pem - echo -e "${TRITON_CERT}" | tr '#' '\n' > ${TRITON_CREDS_PATH}/cert.pem - echo -e "${TRITON_KEY}" | tr '#' '\n' > ${TRITON_CREDS_PATH}/key.pem -fi diff --git a/docker/compose-api/etc/containerpilot.json b/docker/compose-api/etc/containerpilot.json deleted file mode 100644 index ed5494f6..00000000 --- a/docker/compose-api/etc/containerpilot.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "consul": "localhost:8500", - "jobs": [ - { - "name": "setup-config", - "exec": "/bin/prestart.sh" - }, - { - "name": "docker-compose-api", - "port": 4242, - "exec": [ - "python", - "-u", - "./bin/docker-compose" - ], - "health": { - "exec": "true", - "interval": 10, - "ttl": 25 - }, - "when": { - "source": "setup-config", - "once": "exitSuccess" - }, - "restarts": "unlimited" - }, - { - "name": "consul-agent", - "exec": ["/usr/local/bin/consul", "agent", - "-data-dir=/data", - "-config-dir=/config", - "-log-level=err", - "-rejoin", - "-retry-join", "{{ .CONSUL | default "consul" }}", - "-retry-max", "10", - "-retry-interval", "10s"], - "health": { - "exec": "curl -so /dev/null http://localhost:8500", - "interval": 10, - "ttl": 25 - }, - "restarts": "unlimited" - } - ] -} diff --git a/docker/frontend/Dockerfile b/docker/frontend/Dockerfile deleted file mode 100644 index e47dced9..00000000 --- a/docker/frontend/Dockerfile +++ /dev/null @@ -1,52 +0,0 @@ -FROM node:8-alpine - -# Install dependencies -RUN set -x \ - && apk update \ - && apk add --update curl bash nginx openssl \ - && apk upgrade \ - && rm -rf /var/cache/apk/* - - # Install Consul template - # Releases at https://releases.hashicorp.com/consul-template/ - RUN set -ex \ - && export CONSUL_TEMPLATE_VERSION=0.19.0 \ - && export CONSUL_TEMPLATE_CHECKSUM=31dda6ebc7bd7712598c6ac0337ce8fd8c533229887bd58e825757af879c5f9f \ - && curl --retry 7 --fail -Lso /tmp/consul-template.zip "https://releases.hashicorp.com/consul-template/${CONSUL_TEMPLATE_VERSION}/consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.zip" \ - && echo "${CONSUL_TEMPLATE_CHECKSUM} /tmp/consul-template.zip" | sha256sum -c \ - && unzip /tmp/consul-template.zip -d /usr/local/bin \ - && rm /tmp/consul-template.zip - -# Install Consul agent -ENV CONSUL_VERSION 0.7.0 -ENV CONSUL_CHECKSUM b350591af10d7d23514ebaa0565638539900cdb3aaa048f077217c4c46653dd8 -RUN curl --retry 7 --fail -vo /tmp/consul.zip "https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip" \ - && echo "${CONSUL_CHECKSUM} /tmp/consul.zip" | sha256sum -c \ - && unzip /tmp/consul -d /usr/local/bin \ - && rm /tmp/consul.zip \ - && mkdir /config - -# Install Containerpilot -ENV CONTAINERPILOT_VERSION 3.4.1 -RUN export CONTAINERPILOT_CHECKSUM=4d13cfb345de86135ab2271b77516c6b6a7bed3a \ - && export archive=containerpilot-${CONTAINERPILOT_VERSION}.tar.gz \ - && curl -Lso /tmp/${archive} \ - "https://github.com/joyent/containerpilot/releases/download/${CONTAINERPILOT_VERSION}/${archive}" \ - && echo "${CONTAINERPILOT_CHECKSUM} /tmp/${archive}" | sha1sum -c \ - && tar zxf /tmp/${archive} -C /bin \ - && rm /tmp/${archive} - -ENV NODE_ENV=production - -# Copy required files -COPY ./bin /bin -COPY ./etc/nginx.conf.tmpl /etc/nginx/nginx.conf.tmpl -COPY ./etc/containerpilot.json5 /etc/containerpilot.json5 -ENV CONTAINERPILOT /etc/containerpilot.json5 - -RUN mkdir -p /opt/app/ -WORKDIR /opt/app/ -RUN npm pack joyent-cp-frontend -RUN tar -xzf joyent-cp-frontend*.tgz - -CMD ["containerpilot"] diff --git a/docker/frontend/bin/reload-nginx.sh b/docker/frontend/bin/reload-nginx.sh deleted file mode 100755 index 403e2225..00000000 --- a/docker/frontend/bin/reload-nginx.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -# Render Nginx configuration template using values from Consul, -# but do not reload because Nginx has't started yet. -# Install key files for TLS auth in nginx -preStart() { - # Copy creds from env vars to files on disk - if [ -n ${!NGINX_CA_CRT} ] \ - && [ -n ${!NGINX_SERVER_KEY} ] \ - && [ -n ${!NGINX_SERVER_CRT} ] - then - local nginx_path=/etc/nginx/certs - mkdir -p $nginx_path - mkdir -p $nginx_path/ca - mkdir -p $nginx_path/server - echo -e "${NGINX_CA_CRT}" | tr '#' '\n' > $nginx_path/ca/ca.crt - echo -e "${NGINX_SERVER_KEY}" | tr '#' '\n' > $nginx_path/server/server.key - echo -e "${NGINX_SERVER_CRT}" | tr '#' '\n' > $nginx_path/server/server.crt - - chmod 444 $nginx_path/ca/ca.crt - chmod 444 $nginx_path/server/server.key - chmod 444 $nginx_path/server/server.crt - fi - - consul-template \ - -once \ - -consul-addr "localhost:8500" \ - -template "/etc/nginx/nginx.conf.tmpl:/etc/nginx/nginx.conf" -} - -# Render Nginx configuration template using values from Consul, -# then gracefully reload Nginx -onChange() { - consul-template \ - -once \ - -consul-addr "localhost:8500" \ - -template "/etc/nginx/nginx.conf.tmpl:/etc/nginx/nginx.conf:nginx -s reload" -} - -until - cmd=$1 - if [ -z "$cmd" ]; then - onChange - fi - shift 1 - $cmd "$@" - [ "$?" -ne 127 ] -do - onChange - exit -done diff --git a/docker/frontend/bin/sensors.sh b/docker/frontend/bin/sensors.sh deleted file mode 100755 index 1a68bbd9..00000000 --- a/docker/frontend/bin/sensors.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash -set -e - -help() { - echo 'Uses cli tools free and top to determine current CPU and memory usage' - echo 'for the telemetry service.' -} - -# memory usage in percent -memory() { - # awk oneliner to get memory usage - # free -m | awk 'NR==2{printf "Memory Usage: %s/%sMB (%.2f%%)\n", $3,$2,$3*100/$2 }' - # output: - # Memory Usage: 15804/15959MB (99.03%) - local memory=$(free -m | awk 'NR==2{printf "%.2f", $3*100/$2 }') - /bin/containerpilot -putmetric "frontend_memory_percent=$memory" -} - -# cpu load -cpu() { - # oneliner to display cpu load - # top -bn1 | grep load | awk '{printf "CPU Load: %.2f\n", $(NF-2)}' - local cpuload=$(uptime | awk '{printf "%.2f", $6}') - /bin/containerpilot -putmetric "frontend_cpu_load=$cpuload" -} - -diskusage() { - local usage=$(df -P | grep '/$' | awk 'NR=2{print $3}' | sed 's/[^0-9\.]*//g') - /bin/containerpilot -putmetric "frontend_disk_usage=$usage" -} - -diskcapacity() { - local capacity=$(df -P | grep '/$' | awk 'NR=2{print $2}' | sed 's/[^0-9\.]*//g') - /bin/containerpilot -putmetric "frontend_disk_capacity=$capacity" -} - -cmd=$1 -if [ ! -z "$cmd" ]; then - shift 1 - $cmd "$@" - exit -fi - -help diff --git a/docker/frontend/etc/containerpilot.json5 b/docker/frontend/etc/containerpilot.json5 deleted file mode 100644 index 46c532b8..00000000 --- a/docker/frontend/etc/containerpilot.json5 +++ /dev/null @@ -1,130 +0,0 @@ -{ - consul: 'localhost:8500', - jobs: [ - { - name: 'consul-agent', - exec: ['/usr/local/bin/consul', 'agent', - '-data-dir=/data', - '-config-dir=/config', - '-log-level=err', - '-rejoin', - '-retry-join', '{{ .CONSUL | default "consul" }}', - '-retry-max', '10', - '-retry-interval', '10s'], - health: { - exec: '/usr/bin/curl -o /dev/null --fail -s http://localhost:8500', - interval: 5, - ttl: 25 - }, - restarts: 'unlimited' - }, - { - name: "preStart", - exec: "/bin/reload-nginx.sh preStart", - when: { - source: 'consul-agent', - once: 'healthy' - }, - }, - { - name: 'cp-frontend', - port: {{.PORT}}, - exec: 'nginx', - interfaces: ["eth0", "eth1"], - restarts: 'unlimited', - when: { - source: 'preStart', - once: 'exitSuccess' - }, - health: { - exec: 'pstree nginx', - interval: 10, - ttl: 25 - } - }, - { - name: "onchange-api", - exec: "/bin/reload-nginx.sh onChange", - when: { - source: "watch.api", - each: "changed" - } - }, - { - name: 'sensor_memory_usage', - exec: '/bin/sensors.sh memory', - timeout: '5s', - when: { - interval: '5s' - }, - restarts: 'unlimited' - }, - { - name: 'sensor_cpu_load', - exec: '/bin/sensors.sh cpu', - timeout: '5s', - when: { - interval: '5s' - }, - restarts: 'unlimited' - }, - { - name: 'sensor_disk_capacity', - exec: '/bin/sensors.sh diskcapacity', - timeout: '5s', - when: { - interval: '60s' - }, - restarts: 'unlimited' - }, - { - name: 'sensor_disk_usage', - exec: '/bin/sensors.sh diskusage', - timeout: '5s', - when: { - interval: '60s' - }, - restarts: 'unlimited' - } - ], - watches: [ - { - name: 'api', - interval: 3 - } - ], - telemetry: { - port: 9090, - tags: ['op'], - metrics: [ - { - namespace: 'frontend', - subsystem: 'memory', - name: 'percent', - help: 'Percentage of memory used', - type: 'gauge' - }, - { - namespace: 'frontend', - subsystem: 'cpu', - name: 'load', - help: 'CPU load', - type: 'gauge' - }, - { - namespace: 'frontend', - subsystem: 'disk', - name: 'capacity', - help: 'Disk capacity', - type: 'gauge' - }, - { - namespace: 'frontend', - subsystem: 'disk', - name: 'usage', - help: 'Disk usage', - type: 'gauge' - } - ] - } -} diff --git a/docker/frontend/etc/nginx.conf.tmpl b/docker/frontend/etc/nginx.conf.tmpl deleted file mode 100644 index 1d6bb333..00000000 --- a/docker/frontend/etc/nginx.conf.tmpl +++ /dev/null @@ -1,137 +0,0 @@ -# /etc/nginx/nginx.conf - -user nginx; -worker_processes 1; -daemon off; - -# Enables the use of JIT for regular expressions to speed-up their processing. -pcre_jit on; - -# Configures default error logger. -error_log /var/log/nginx/error.log warn; - -pid /var/run/nginx.pid; - -# Includes files with directives to load dynamic modules. -include /etc/nginx/modules/*.conf; - - -events { - # The maximum number of simultaneous connections that can be opened by - # a worker process. - worker_connections 1024; -} - -http { - index index.html index.htm; - - server { - server_name _; - listen 80; - listen [::]:80; - location / { - rewrite ^ https://$host$request_uri? permanent; - } - } - - {{ if service "api" }} - upstream api_hosts { - {{range service "api"}} - server {{.Address}}:{{.Port}}; - {{end}} - }{{ end }} - - server { - listen 443 ssl; - listen [::]:443 ssl; - root /opt/app/package/build; - - ssl_certificate /etc/nginx/certs/server/server.crt; - ssl_certificate_key /etc/nginx/certs/server/server.key; - ssl_client_certificate /etc/nginx/certs/ca/ca.crt; - ssl_verify_client on; - ssl_session_timeout 1d; - - ssl_protocols TLSv1.1 TLSv1.2; - ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!3DES:!MD5:!PSK'; - - location / { - try_files $uri /index.html; - } - {{ if service "api" }} - location /api { - rewrite /api/(.*) /$1 break; - proxy_pass http://api_hosts; - proxy_redirect off; - proxy_set_header Host $http_host; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Client-Dn $ssl_client_s_dn; - }{{ end }} - } - - # Includes mapping of file name extensions to MIME types of responses - # and defines the default type. - include /etc/nginx/mime.types; - default_type application/octet-stream; - - # Name servers used to resolve names of upstream servers into addresses. - # It's also needed when using tcpsocket and udpsocket in Lua modules. - #resolver 208.67.222.222 208.67.220.220; - - # Don't tell nginx version to clients. - server_tokens off; - - # Specifies the maximum accepted body size of a client request, as - # indicated by the request header Content-Length. If the stated content - # length is greater than this size, then the client receives the HTTP - # error code 413. Set to 0 to disable. - client_max_body_size 1m; - - # Timeout for keep-alive connections. Server will close connections after - # this time. - keepalive_timeout 65; - - # Sendfile copies data between one FD and other from within the kernel, - # which is more efficient than read() + write(). - sendfile on; - - # Don't buffer data-sends (disable Nagle algorithm). - # Good for sending frequent small bursts of data in real time. - tcp_nodelay on; - - # Causes nginx to attempt to send its HTTP response head in one packet, - # instead of using partial frames. - #tcp_nopush on; - - # Path of the file with Diffie-Hellman parameters for EDH ciphers. - #ssl_dhparam /etc/ssl/nginx/dh2048.pem; - - # Specifies that our cipher suits should be preferred over client ciphers. - ssl_prefer_server_ciphers on; - - # Enables a shared SSL cache with size that can hold around 8000 sessions. - ssl_session_cache shared:SSL:2m; - - - # Enable gzipping of responses. - #gzip on; - - # Set the Vary HTTP header as defined in the RFC 2616. - gzip_vary on; - - # Enable checking the existence of precompressed files. - #gzip_static on; - - - # Specifies the main log format. - log_format main '$remote_addr - $remote_user [$time_local] "$request" ' - '$status $body_bytes_sent "$http_referer" ' - '"$http_user_agent" "$http_x_forwarded_for"'; - - # Sets the path, format, and configuration for a buffered log write. - access_log /var/log/nginx/access.log main; - - - # Includes virtual hosts configs. - # include /etc/nginx/conf.d/*.conf; -} diff --git a/gen-keys.sh b/gen-keys.sh deleted file mode 100755 index a3643d00..00000000 --- a/gen-keys.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash -set -e -o pipefail - -TRITON_ACCOUNT=$(triton account get | awk -F": " '/id:/{print $2}') -TRITON_DC=$(triton profile get | awk -F"/" '/url:/{print $3}' | awk -F'.' '{print $1}') - -DEFAULT_DOMAIN=${TRITON_ACCOUNT}.${TRITON_DC}.cns.triton.zone - -read -p "Enter the domain name you plan to use for this key [$DEFAULT_DOMAIN]: " domain -domain="${domain:-$DEFAULT_DOMAIN}" -echo -n "Enter the password to use for the key: " -read -s password -echo -echo "Generating key for $domain" - - - -keys_path=keys-$domain -mkdir -p $keys_path - -openssl genrsa -aes256 -passout pass:$password -out $keys_path/ca.key 4096 -chmod 400 $keys_path/ca.key -openssl req -new -x509 -sha256 -days 730 -key $keys_path/ca.key -out $keys_path/ca.crt -passin pass:$password -subj "/CN=copilot" -chmod 444 $keys_path/ca.crt - - -openssl genrsa -out $keys_path/server.key 2048 -chmod 400 $keys_path/server.key -openssl req -new -key $keys_path/server.key -sha256 -out $keys_path/server.csr -passin pass:$password -subj "/CN=$domain" -openssl x509 -req -days 365 -sha256 -in $keys_path/server.csr -passin pass:$password -CA $keys_path/ca.crt -CAkey $keys_path/ca.key -set_serial 1 -out $keys_path/server.crt -chmod 444 $keys_path/server.crt - -openssl genrsa -out $keys_path/client.key 2048 -openssl req -new -key $keys_path/client.key -out $keys_path/client.csr -subj "/CN=$domain" -openssl x509 -req -days 365 -sha256 -in $keys_path/client.csr -CA $keys_path/ca.crt -CAkey $keys_path/ca.key -set_serial 2 -out $keys_path/client.crt -passin pass:$password -openssl pkcs12 -export -clcerts -in $keys_path/client.crt -inkey $keys_path/client.key -out $keys_path/client.p12 -passout pass:$password - -open $keys_path/client.p12 & -echo -echo "You can complete setup by running './setup.sh ~/path/to/TRITON_PRIVATE_KEY $keys_path/ca.crt $keys_path/server.key $keys_path/server.crt'" diff --git a/local-compose.yml b/local-compose.yml deleted file mode 100644 index a4a8de74..00000000 --- a/local-compose.yml +++ /dev/null @@ -1,106 +0,0 @@ -############################################################################# -# CONSUL -# -# Consul is the service catalog that helps discovery between the components -# Change "-bootstrap" to "-bootstrap-expect 3", then scale to 3 or more to -# turn this into an HA Consul raft. -############################################################################# -consul: - image: autopilotpattern/consul:0.7.2-r0.8 - command: > - /usr/local/bin/containerpilot - /bin/consul agent -server - -config-dir=/etc/consul - -log-level=err - -bootstrap-expect 1 - -ui-dir /ui - restart: always - mem_limit: 128m - ports: - - 8500:8500 - -############################################################################# -# PROMETHEUS -# -# Prometheus is an open source performance monitoring tool -# it is included here for demo purposes and is not required -############################################################################# -prometheus: - image: autopilotpattern/prometheus:1.7.1-r24 - restart: always - mem_limit: 1g - ports: - - 9090:9090 - links: - - consul:consul - environment: - - CONSUL=consul - - CONSUL_AGENT=1 - - -############################################################################# -# FRONTEND -############################################################################# -frontend: - build: docker/frontend - mem_limit: 512m - links: - - consul:consul - env_file: - - _env - environment: - - CONSUL=consul - - PORT=443 - ports: - - "80:80" - - "443:443" - - -############################################################################# -# BACKEND -############################################################################# -api: - build: docker/api - mem_limit: 512m - links: - - consul:consul - env_file: - - _env - environment: - - CONSUL=consul - - PORT=3000 - expose: - - 3000 - -# Docker-compose wrapper -# Create _env file from running ./setup.sh -compose-api: - build: docker/compose-api - links: - - consul:consul - expose: - - 4242 - env_file: - - _env - environment: - - CONSUL=consul - restart: always - -rethinkdb: - image: autopilotpattern/rethinkdb:2.3.5r1 - restart: always - mem_limit: 1g - links: - - consul:consul - env_file: - - _env - environment: - - CONSUL=consul - - CONSUL_AGENT=1 - ports: - - 8080:8080 - expose: - - 28015 - - 29015 - dns: - - 127.0.0.1 diff --git a/package.json b/package.json index bf739153..21a8d7e8 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "container-pilot-dashboard", + "name": "joyent-portal", "version": "1.0.0", "private": true, "license": "MPL-2.0", @@ -14,7 +14,7 @@ "lint-license": "./scripts/license-to-fail", "lint-docs": "./scripts/quality-docs", "lint-ci:root": - "echo 0 `# eslint scripts/* --format junit --output-file $CIRCLE_TEST_REPORTS/lint/container-pilot-dashboard.xml`", + "echo 0 `# eslint scripts/* --format junit --output-file $CIRCLE_TEST_REPORTS/lint/joyent-portal.xml`", "lint:root": "echo 0 `# eslint scripts/* --fix`", "lint-ci:packages": "lerna run lint-ci", "lint:packages": "lerna run lint", diff --git a/packages/cp-frontend/.babelrc b/packages/cp-frontend/.babelrc deleted file mode 100644 index d57f858e..00000000 --- a/packages/cp-frontend/.babelrc +++ /dev/null @@ -1,9 +0,0 @@ -{ - "presets": "joyent-portal", - "plugins": [ - "styled-components", - ["inline-react-svg", { - "ignorePattern": "libre-franklin" - }] - ] -} diff --git a/packages/cp-frontend/.dockerignore b/packages/cp-frontend/.dockerignore deleted file mode 100644 index 06ad4916..00000000 --- a/packages/cp-frontend/.dockerignore +++ /dev/null @@ -1,9 +0,0 @@ -src/components/base/*.css -node_modules -coverage -.nyc_output -docs/static -!docs/static/index.html -docs/node_modules -dist -package-lock.json diff --git a/packages/cp-frontend/.eslintignore b/packages/cp-frontend/.eslintignore deleted file mode 100644 index 0321eefc..00000000 --- a/packages/cp-frontend/.eslintignore +++ /dev/null @@ -1,4 +0,0 @@ -.nyc_output -coverage -dist -build \ No newline at end of file diff --git a/packages/cp-frontend/.eslintrc b/packages/cp-frontend/.eslintrc deleted file mode 100644 index a847796a..00000000 --- a/packages/cp-frontend/.eslintrc +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "joyent-portal", - "rules": { - "no-console": 0, - "new-cap": 0, - // temp - "no-undef": 1, - "no-debugger": 1, - "no-negated-condition": 0 - } -} diff --git a/packages/cp-frontend/.gitignore b/packages/cp-frontend/.gitignore deleted file mode 100644 index 927d17bb..00000000 --- a/packages/cp-frontend/.gitignore +++ /dev/null @@ -1,18 +0,0 @@ -# See https://help.github.com/ignore-files/ for more about ignoring files. - -# dependencies -/node_modules - -# testing -/coverage - -# production -/build - -# misc -.DS_Store -.env -npm-debug.log* -yarn-debug.log* -yarn-error.log* - diff --git a/packages/cp-frontend/.stylelintrc b/packages/cp-frontend/.stylelintrc deleted file mode 100644 index 82892b62..00000000 --- a/packages/cp-frontend/.stylelintrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "syntax": "scss", - "processors": ["stylelint-processor-styled-components"], - "extends": ["stylelint-config-standard", "stylelint-config-primer"] -} diff --git a/packages/cp-frontend/.tern-project b/packages/cp-frontend/.tern-project deleted file mode 100644 index 4a7fee71..00000000 --- a/packages/cp-frontend/.tern-project +++ /dev/null @@ -1,15 +0,0 @@ -{ - "libs": [ - "ecmascript", - "browser" - ], - "plugins": { - "doc_comment": true, - "local-scope": true, - "jsx": true, - "node": true, - "webpack": { - "configPath": "./node_modules/react-scripts/config/webpack.config.dev.js" - } - } -} \ No newline at end of file diff --git a/packages/cp-frontend/CHANGELOG.md b/packages/cp-frontend/CHANGELOG.md deleted file mode 100644 index 2695a8a8..00000000 --- a/packages/cp-frontend/CHANGELOG.md +++ /dev/null @@ -1,24 +0,0 @@ -# Change Log - -All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. - - -# 1.1.0 (2017-05-25) - - -### Bug Fixes - -* **cp-frontend:** gracefully handle multiple postinstall executions ([73899b2](https://github.com/yldio/joyent-portal/commit/73899b2)) -* **cp-frontend:** use `postinstall` hook to patch react-scripts ([d2ac10a](https://github.com/yldio/joyent-portal/commit/d2ac10a)) - - -### Features - -* **cp-frontend,ui-toolkit:** style inheritance using `.extend` (#458) ([f3e531d](https://github.com/yldio/joyent-portal/commit/f3e531d)) - - - - - -## 1.0.3 (2017-05-25) diff --git a/packages/cp-frontend/Dockerfile b/packages/cp-frontend/Dockerfile deleted file mode 100644 index 2d3559a9..00000000 --- a/packages/cp-frontend/Dockerfile +++ /dev/null @@ -1,19 +0,0 @@ -FROM quay.io/yldio/alpine-node-containerpilot:latest - -RUN apk add --update nginx - -ENV CONTAINERPILOT /etc/containerpilot.json5 - -RUN npm install -g npm@^4 -RUN npm config set loglevel info \ - && yarn add lerna@^2.0.0 - -RUN ./node_modules/.bin/lerna clean --yes --scope joyent-cp-frontend --include-filtered-dependencies \ - && ./node_modules/.bin/lerna bootstrap --scope joyent-cp-frontend --include-filtered-dependencies - -COPY packages/cp-frontend/etc/containerpilot.json5 ${CONTAINERPILOT} -COPY packages/cp-frontend/etc/nginx.conf.tmpl /etc/nginx/nginx.conf.tmpl - -WORKDIR /opt/app/packages/cp-frontend - -CMD ["/bin/containerpilot"] diff --git a/packages/cp-frontend/README.md b/packages/cp-frontend/README.md deleted file mode 100644 index 77a4d24a..00000000 --- a/packages/cp-frontend/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# joyent-cp-frontend - -[![Docker Repository on Quay](https://quay.io/repository/yldio/joyent-cp-frontend/status)](https://quay.io/repository/yldio/joyent-cp-frontend) -[![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0) -[![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg)](https://github.com/RichardLitt/standard-readme) -[![demo master](https://img.shields.io/badge/demo-master-3B47CC.svg)](http://cp-frontend-master.svc.f4b20699-b323-4452-9091-977895896da6.eu-ams-1.triton.zone:3069) -[![demo staging](https://img.shields.io/badge/demo-staging-3B47CC.svg)](http://cp-frontend-staging.svc.f4b20699-b323-4452-9091-977895896da6.eu-ams-1.triton.zone:3069) - -## Table of Contents - -- [Usage](#usage) -- [License](#license) - -## Usage - -``` -npm run start -open http://0.0.0.0:3069 -``` - -## License - -MPL-2.0 diff --git a/packages/cp-frontend/etc/containerpilot.json5 b/packages/cp-frontend/etc/containerpilot.json5 deleted file mode 100644 index 5bb776e6..00000000 --- a/packages/cp-frontend/etc/containerpilot.json5 +++ /dev/null @@ -1,54 +0,0 @@ -{ - consul: 'localhost:8500', - jobs: [ - { - name: 'is-built', - exec: '[ -d /opt/app/packages/cp-frontend/build/static ]' - }, - { - name: 'build', - exec: 'yarn run build', - when: { - source: 'is-built', - once: 'exitFailed' - } - }, - { - name: 'config-nginx', - exec: 'containerpilot -config /etc/nginx/nginx.conf.tmpl -template -out /etc/nginx/nginx.conf' - }, - { - name: 'cp-frontend', - port: {{.PORT}}, - exec: 'nginx', - interfaces: ["eth0", "eth1"], - restarts: 'unlimited', - when: { - source: 'config-nginx', - once: 'exitSuccess' - }, - health: { - exec: '/usr/bin/curl -o /dev/null --fail -s http://localhost:{{.PORT}}', - interval: 5, - ttl: 25 - }, - tags: [ - 'traefik.backend=cp-frontend', - 'traefik.frontend.rule=PathPrefix:/', - 'traefik.frontend.entryPoints={{ .ENTRYPOINTS | default "http,ws,wss" }}' - ] - }, - { - name: 'consul-agent', - exec: ['/usr/local/bin/consul', 'agent', - '-data-dir=/data', - '-config-dir=/config', - '-log-level=err', - '-rejoin', - '-retry-join', '{{ .CONSUL | default "consul" }}', - '-retry-max', '10', - '-retry-interval', '10s'], - restarts: 'unlimited' - } - ] -} \ No newline at end of file diff --git a/packages/cp-frontend/etc/nginx.conf.tmpl b/packages/cp-frontend/etc/nginx.conf.tmpl deleted file mode 100644 index 66c02cf4..00000000 --- a/packages/cp-frontend/etc/nginx.conf.tmpl +++ /dev/null @@ -1,101 +0,0 @@ -# /etc/nginx/nginx.conf - -user nginx; -worker_processes 1; -daemon off; - -# Enables the use of JIT for regular expressions to speed-up their processing. -pcre_jit on; - -# Configures default error logger. -error_log /var/log/nginx/error.log warn; - -pid /var/run/nginx.pid; - -# Includes files with directives to load dynamic modules. -include /etc/nginx/modules/*.conf; - - -events { - # The maximum number of simultaneous connections that can be opened by - # a worker process. - worker_connections 1024; -} - -http { - index index.html index.htm; - server { - server_name _; - listen {{ .PORT | default "80" }} default_server; - listen [::]:{{ .PORT | default "80" }} default_server; - root /opt/app/packages/cp-frontend/build; - location / { - try_files $uri /index.html; - } - } - # Includes mapping of file name extensions to MIME types of responses - # and defines the default type. - include /etc/nginx/mime.types; - default_type application/octet-stream; - - # Name servers used to resolve names of upstream servers into addresses. - # It's also needed when using tcpsocket and udpsocket in Lua modules. - #resolver 208.67.222.222 208.67.220.220; - - # Don't tell nginx version to clients. - server_tokens off; - - # Specifies the maximum accepted body size of a client request, as - # indicated by the request header Content-Length. If the stated content - # length is greater than this size, then the client receives the HTTP - # error code 413. Set to 0 to disable. - client_max_body_size 1m; - - # Timeout for keep-alive connections. Server will close connections after - # this time. - keepalive_timeout 65; - - # Sendfile copies data between one FD and other from within the kernel, - # which is more efficient than read() + write(). - sendfile on; - - # Don't buffer data-sends (disable Nagle algorithm). - # Good for sending frequent small bursts of data in real time. - tcp_nodelay on; - - # Causes nginx to attempt to send its HTTP response head in one packet, - # instead of using partial frames. - #tcp_nopush on; - - # Path of the file with Diffie-Hellman parameters for EDH ciphers. - #ssl_dhparam /etc/ssl/nginx/dh2048.pem; - - # Specifies that our cipher suits should be preferred over client ciphers. - ssl_prefer_server_ciphers on; - - # Enables a shared SSL cache with size that can hold around 8000 sessions. - ssl_session_cache shared:SSL:2m; - - - # Enable gzipping of responses. - #gzip on; - - # Set the Vary HTTP header as defined in the RFC 2616. - gzip_vary on; - - # Enable checking the existence of precompressed files. - #gzip_static on; - - - # Specifies the main log format. - log_format main '$remote_addr - $remote_user [$time_local] "$request" ' - '$status $body_bytes_sent "$http_referer" ' - '"$http_user_agent" "$http_x_forwarded_for"'; - - # Sets the path, format, and configuration for a buffered log write. - access_log /var/log/nginx/access.log main; - - - # Includes virtual hosts configs. - # include /etc/nginx/conf.d/*.conf; -} \ No newline at end of file diff --git a/packages/cp-frontend/package.json b/packages/cp-frontend/package.json deleted file mode 100644 index 74b01c09..00000000 --- a/packages/cp-frontend/package.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "name": "joyent-cp-frontend", - "version": "1.4.0", - "license": "MPL-2.0", - "repository": "github:yldio/joyent-portal", - "main": "build/", - "scripts": { - "dev": "REACT_APP_GQL_PORT=3000 PORT=3069 REACT_APP_GQL_PROTOCOL=http react-scripts start", - "start": "PORT=3069 react-scripts start", - "build": "NODE_ENV=production react-scripts build", - "lint:css": "echo 0", - "lint:js": "eslint . --fix", - "lint": "redrun -s lint:*", - "lint-ci:css": "echo 0", - "lint-ci:js": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/cp-frontend.xml", - "lint-ci": "redrun -p lint-ci:*", - "test": "NODE_ENV=test ./test/run --env=jsdom", - "test-ci": "echo 0 `# NODE_ENV=test JEST_JUNIT_OUTPUT=$CIRCLE_TEST_REPORTS/test/cp-frontend.xml ./test/run --env=jsdom --coverage --coverageDirectory=$CIRCLE_ARTIFACTS/cp-frontend --testResultsProcessor=$(node -e \"console.log(require.resolve('jest-junit'))\")`", - "prepublish": "node scripts/postinstall" - }, - "dependencies": { - "apollo": "^0.2.2", - "apr-intercept": "^1.0.4", - "chart.js": "^2.6.0", - "constant-case": "^2.0.0", - "force-array": "^3.1.0", - "graphql-tag": "^2.4.2", - "jest-cli": "^20.0.4", - "joyent-manifest-editor": "^1.1.0", - "joyent-ui-toolkit": "^1.2.0", - "js-yaml": "^3.9.1", - "lodash.find": "^4.6.0", - "lodash.flatten": "^4.4.0", - "lodash.get": "^4.4.2", - "lodash.isstring": "^4.0.1", - "lodash.remove": "^4.7.0", - "lodash.uniq": "^4.5.0", - "lodash.uniqby": "^4.7.0", - "normalized-styled-components": "^1.0.9", - "param-case": "^2.1.1", - "prop-types": "^15.5.10", - "react": "^15.6.1", - "react-apollo": "^1.4.15", - "react-bundle": "^1.0.4", - "react-codemirror": "^1.0.0", - "react-dom": "^15.6.1", - "react-redux": "^5.0.6", - "react-router": "^4.1.1", - "react-router-dom": "^4.1.2", - "react-simple-table": "^1.0.1", - "react-styled-flexboxgrid": "^2.0.3", - "redux": "^3.7.2", - "redux-actions": "^2.2.1", - "redux-batched-actions": "^0.2.0", - "redux-form": "^7.0.3", - "remcalc": "^1.0.8", - "reselect": "^3.0.1", - "simple-statistics": "^4.1.1", - "styled-components": "^2.1.2", - "styled-is": "^1.0.11", - "styled-text-spinners": "^1.0.1", - "title-case": "^2.1.1", - "unitcalc": "^1.0.8", - "uuid": "^3.1.0" - }, - "devDependencies": { - "apr-for-each": "^1.0.6", - "apr-main": "^1.0.7", - "babel-plugin-inline-react-svg": "^0.4.0", - "babel-plugin-styled-components": "^1.2.0", - "babel-preset-joyent-portal": "^2.0.0", - "cross-env": "^5.0.5", - "eslint": "^4.5.0", - "eslint-config-joyent-portal": "3.0.0", - "jest": "^21.0.1", - "jest-alias-preprocessor": "^1.1.1", - "jest-cli": "^20.0.4", - "jest-diff": "^20.0.3", - "jest-junit": "^3.0.0", - "jest-matcher-utils": "^20.0.3", - "jest-snapshot": "^20.0.3", - "jest-styled-components": "^4.4.1", - "jest-transform-graphql": "^2.1.0", - "lodash.sortby": "^4.7.0", - "mz": "^2.6.0", - "react-scripts": "^1.0.12", - "react-test-renderer": "^15.6.1", - "redrun": "^5.9.17", - "stylelint": "^8.0.0", - "stylelint-config-primer": "^2.0.1", - "stylelint-config-standard": "^17.0.0", - "stylelint-processor-styled-components": "styled-components/stylelint-processor-styled-components#2a33b5f" - } -} diff --git a/packages/cp-frontend/public/favicon.ico b/packages/cp-frontend/public/favicon.ico deleted file mode 100644 index 5c125de5..00000000 Binary files a/packages/cp-frontend/public/favicon.ico and /dev/null differ diff --git a/packages/cp-frontend/public/index.html b/packages/cp-frontend/public/index.html deleted file mode 100644 index a1bbdd95..00000000 --- a/packages/cp-frontend/public/index.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - Joyent CoPilot - - - -
- - diff --git a/packages/cp-frontend/scripts/patch-webpack-config.js b/packages/cp-frontend/scripts/patch-webpack-config.js deleted file mode 100644 index ae95b04c..00000000 --- a/packages/cp-frontend/scripts/patch-webpack-config.js +++ /dev/null @@ -1,120 +0,0 @@ -const webpack = require('webpack'); -const isString = require('lodash.isstring'); -const fs = require('fs'); -const path = require('path'); - -const FRONTEND_ROOT = process.cwd(); -const FRONTEND = path.join(FRONTEND_ROOT, 'src'); - -const BabelLoader = loader => ({ - test: loader.test, - include: loader.include, - loader: loader.loader, - options: { - babelrc: true, - cacheDirectory: true - } -}); - -const FileLoader = loader => ({ - exclude: loader.exclude.concat([/\.(graphql|gql)$/]), - loader: loader.loader, - options: loader.options -}); - -module.exports = config => { - config.resolve.plugins = []; - - config.plugins = config.plugins.filter( - plugin => !(plugin instanceof webpack.optimize.UglifyJsPlugin) - ); - - config.module.rules = config.module.rules - .reduce((loaders, loader, index) => { - if (Array.isArray(loader.use)) { - return loaders.concat([ - Object.assign(loader, { - use: loader.use.map(l => { - if (isString(l) || !isString(l.loader)) { - return l; - } - - if (!l.loader.match(/eslint-loader/)) { - return l; - } - - return Object.assign(l, { - options: Object.assign(l.options, { - baseConfig: null, - useEslintrc: true - }) - }); - }) - }) - ]); - } - - if (Array.isArray(loader.oneOf)) { - return loaders.concat([ - Object.assign(loader, { - oneOf: loader.oneOf.map(loader => { - if (!isString(loader.loader)) { - return loader; - } - - if (loader.loader.match(/babel-loader/)) { - return BabelLoader(loader); - } - - if (loader.loader.match(/file-loader/)) { - return FileLoader(loader); - } - - return loader; - }) - }) - ]); - } - - if (!isString(loader.loader)) { - return loaders.concat([loader]); - } - - if (loader.loader.match(/babel-loader/)) { - return loaders.concat(BabelLoader(loader)); - } - - if (loader.loader.match(/file-loader/)) { - return loaders.concat([FileLoader(loader)]); - } - - return loaders.concat([loader]); - }, []) - .concat([ - { - test: /\.(graphql|gql)$/, - exclude: /node_modules/, - loader: require.resolve('graphql-tag/loader') - } - ]); - - config.resolve.alias = Object.assign( - {}, - config.resolve.alias, - fs - .readdirSync(FRONTEND) - .map(name => path.join(FRONTEND, name)) - .filter(fullpath => fs.statSync(fullpath).isDirectory()) - .reduce( - (aliases, fullpath) => - Object.assign(aliases, { - [`@${path.basename(fullpath)}`]: fullpath - }), - { - '@root': FRONTEND - } - ) - ); - - return config; -}; diff --git a/packages/cp-frontend/scripts/postinstall.js b/packages/cp-frontend/scripts/postinstall.js deleted file mode 100644 index d313c46c..00000000 --- a/packages/cp-frontend/scripts/postinstall.js +++ /dev/null @@ -1,41 +0,0 @@ -const { readFile, writeFile, exists } = require('mz/fs'); -const main = require('apr-main'); -const forEach = require('apr-for-each'); -const path = require('path'); - -const ROOT = path.join(__dirname, '../../../node_modules/react-scripts/config'); -const configs = ['webpack.config.dev', 'webpack.config.prod']; - -const toCopy = [ - 'patch-webpack-config', - 'webpack.config.dev', - 'webpack.config.prod' -]; - -const backup = async file => { - const backupPath = path.join(ROOT, `${file}.original.js`); - const backupExists = await exists(backupPath); - - if (backupExists) { - return; - } - - const originalPath = path.join(ROOT, `${file}.js`); - const orignalConfig = await readFile(originalPath, 'utf-8'); - return writeFile(backupPath, orignalConfig); -}; - -const copy = async file => { - const srcPath = path.join(__dirname, `${file}.js`); - const destPath = path.join(ROOT, `${file}.js`); - - const src = await readFile(srcPath, 'utf-8'); - return writeFile(destPath, src); -}; - -main( - (async () => { - await forEach(configs, backup); - await forEach(toCopy, copy); - })() -); diff --git a/packages/cp-frontend/scripts/webpack.config.dev.js b/packages/cp-frontend/scripts/webpack.config.dev.js deleted file mode 100644 index 324e9d33..00000000 --- a/packages/cp-frontend/scripts/webpack.config.dev.js +++ /dev/null @@ -1,4 +0,0 @@ -const originalConfig = require('./webpack.config.dev.original'); -const patch = require('./patch-webpack-config'); - -module.exports = patch(originalConfig); diff --git a/packages/cp-frontend/scripts/webpack.config.prod.js b/packages/cp-frontend/scripts/webpack.config.prod.js deleted file mode 100644 index d4bb301c..00000000 --- a/packages/cp-frontend/scripts/webpack.config.prod.js +++ /dev/null @@ -1,4 +0,0 @@ -const originalConfig = require('./webpack.config.prod.original'); -const patch = require('./patch-webpack-config'); - -module.exports = patch(originalConfig); diff --git a/packages/cp-frontend/src/app.js b/packages/cp-frontend/src/app.js deleted file mode 100644 index d309ccdf..00000000 --- a/packages/cp-frontend/src/app.js +++ /dev/null @@ -1,26 +0,0 @@ -import React, { Component } from 'react'; -import { ThemeProvider, injectGlobal } from 'styled-components'; -import { theme, global } from 'joyent-ui-toolkit'; -import { ApolloProvider } from 'react-apollo'; - -import { client, store } from '@state/store'; -import Router from '@root/router'; - -class App extends Component { - componentWillMount() { - // eslint-disable-next-line no-unused-expressions - injectGlobal` - ${global} - `; - } - - render() { - return ( - - {Router} - - ); - } -} - -export default App; diff --git a/packages/cp-frontend/src/assets/triton_logo.png b/packages/cp-frontend/src/assets/triton_logo.png deleted file mode 100644 index 666fe0fe..00000000 Binary files a/packages/cp-frontend/src/assets/triton_logo.png and /dev/null differ diff --git a/packages/cp-frontend/src/assets/triton_logo_dark.png b/packages/cp-frontend/src/assets/triton_logo_dark.png deleted file mode 100644 index 53aa24f8..00000000 Binary files a/packages/cp-frontend/src/assets/triton_logo_dark.png and /dev/null differ diff --git a/packages/cp-frontend/src/components/deployment-group/delete.js b/packages/cp-frontend/src/components/deployment-group/delete.js deleted file mode 100644 index 286f9e47..00000000 --- a/packages/cp-frontend/src/components/deployment-group/delete.js +++ /dev/null @@ -1,32 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { ModalHeading, ModalText, Button } from 'joyent-ui-toolkit'; - -const DeploymentGroupDelete = ({ - deploymentGroup, - onCancelClick = () => {}, - onConfirmClick = () => {} -}) => ( -
- - Deleting a deployment group:
{deploymentGroup.name} -
- - Deleting a deployment group will also remove all of the services and - instances associated with that deployment group. Are you sure you want to - continue? - - - -
-); - -DeploymentGroupDelete.propTypes = { - deploymentGroup: PropTypes.object.isRequired, - onCancelClick: PropTypes.func, - onConfirmClick: PropTypes.func -}; - -export default DeploymentGroupDelete; diff --git a/packages/cp-frontend/src/components/deployment-group/index.js b/packages/cp-frontend/src/components/deployment-group/index.js deleted file mode 100644 index b8cadaaa..00000000 --- a/packages/cp-frontend/src/components/deployment-group/index.js +++ /dev/null @@ -1 +0,0 @@ -export { default as DeploymentGroupDelete } from './delete'; diff --git a/packages/cp-frontend/src/components/instances/empty.js b/packages/cp-frontend/src/components/instances/empty.js deleted file mode 100644 index f1ea081a..00000000 --- a/packages/cp-frontend/src/components/instances/empty.js +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react'; - -import { Col, Row } from 'react-styled-flexboxgrid'; -import { P } from 'joyent-ui-toolkit'; - -export default () => ( - - -

You don't have any instances

- -
-); diff --git a/packages/cp-frontend/src/components/instances/index.js b/packages/cp-frontend/src/components/instances/index.js deleted file mode 100644 index f2137111..00000000 --- a/packages/cp-frontend/src/components/instances/index.js +++ /dev/null @@ -1,2 +0,0 @@ -export { default as EmptyInstances } from './empty'; -export { default as InstanceListItem } from './list-item'; diff --git a/packages/cp-frontend/src/components/instances/list-item.js b/packages/cp-frontend/src/components/instances/list-item.js deleted file mode 100644 index bae278ab..00000000 --- a/packages/cp-frontend/src/components/instances/list-item.js +++ /dev/null @@ -1,161 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import remcalc from 'remcalc'; -import styled from 'styled-components'; -import { isOr } from 'styled-is'; -import titleCase from 'title-case'; - -import { - Card, - CardInfo, - CardView, - CardTitle, - CardDescription, - HealthyIcon, - Label -} from 'joyent-ui-toolkit'; - -const STATUSES = [ - 'PROVISIONING', - 'READY', - 'ACTIVE', - 'RUNNING', - 'STOPPING', - 'STOPPED', - 'OFFLINE', - 'DELETED', - 'DESTROYED', - 'FAILED', - 'INCOMPLETE', - 'UNKNOWN' -]; - -const Dot = styled.span` - margin-right: ${remcalc(6)}; - width: ${remcalc(6)}; - height: ${remcalc(6)}; - border-radius: ${remcalc(3)}; - display: inline-block; - - ${isOr('provisioning', 'ready', 'active', 'running')` - background-color: ${props => props.theme.green}; - `}; - - ${isOr('stopping', 'stopped')` - background-color: ${props => props.theme.grey}; - `}; - - ${isOr('offline', 'destroyed', 'failed')` - background-color: ${props => props.theme.red}; - `}; - - ${isOr('deleted', 'incomplete', 'unknown')` - background-color: ${props => props.theme.secondaryActive}; - `}; -`; - -const StyledCard = Card.extend` - flex-direction: row; - - &:not(:last-child) { - margin-bottom: 0; - box-shadow: none; - border-bottom-width: 0; - } - - background-color: ${props => props.theme.white}; - - ${isOr( - 'stopping', - 'stopped', - 'offline', - 'destroyed', - 'failed', - 'deleted', - 'incomplete', - 'unknown' - )` - background-color: ${props => props.theme.background}; - - & [name="card-options"] > button { - background-color: ${props => props.theme.background}; - }` - } -`; - -const StatusContainer = styled.div` - height: 100%; - display: flex; - flex-direction: column; - flex-wrap: nowrap; - justify-content: center; - align-content: center; -`; - -const InstanceCard = ({ - instance, - onHealthMouseOver = () => {}, - onStatusMouseOver = () => {}, - onMouseOut = () => {} -}) => { - const statusProps = STATUSES.reduce( - (acc, name) => - Object.assign(acc, { - [name.toLowerCase()]: name === instance.status - }), - {} - ); - - const label = (instance.healthy || 'UNKNOWN').toLowerCase(); - const icon = ; - - const handleHealthMouseOver = evt => { - onHealthMouseOver(evt, instance); - }; - - const handleStatusMouseOver = evt => { - onStatusMouseOver(evt, instance); - }; - - const handleMouseOut = evt => { - onMouseOut(evt); - }; - - return ( - - - {instance.name} - - - - - - - - - - - ); -}; - -InstanceCard.propTypes = { - instance: PropTypes.object.isRequired, - onHealthMouseOver: PropTypes.func, - onStatusMouseOver: PropTypes.func, - onMouseOut: PropTypes.func -}; - -export default InstanceCard; diff --git a/packages/cp-frontend/src/components/layout/container.js b/packages/cp-frontend/src/components/layout/container.js deleted file mode 100644 index 1cab6c3b..00000000 --- a/packages/cp-frontend/src/components/layout/container.js +++ /dev/null @@ -1,22 +0,0 @@ -import { Grid } from 'react-styled-flexboxgrid'; -import remcalc from 'remcalc'; -import is, { isNot } from 'styled-is'; - -export default Grid.extend` - padding-top: ${remcalc(19)}; - - ${isNot('plain')` - flex: 1 1 auto; - display: block; - flex-flow: column; - `}; - - ${is('center')` - display: flex; - flex-direction: column; - flex-wrap: nowrap; - justify-content: center; - align-content: center; - align-items: center; - `}; -`; diff --git a/packages/cp-frontend/src/components/layout/index.js b/packages/cp-frontend/src/components/layout/index.js deleted file mode 100644 index d0d40032..00000000 --- a/packages/cp-frontend/src/components/layout/index.js +++ /dev/null @@ -1 +0,0 @@ -export { default as LayoutContainer } from './container'; diff --git a/packages/cp-frontend/src/components/manifest/editors.js b/packages/cp-frontend/src/components/manifest/editors.js deleted file mode 100644 index 150bb492..00000000 --- a/packages/cp-frontend/src/components/manifest/editors.js +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react'; -import ManifestEditorBundle from './manifest-editor'; - -export const MEditor = ({ input, defaultValue, readOnly }) => ( - -); - -export const EEditor = ({ input, defaultValue, readOnly }) => ( - -); \ No newline at end of file diff --git a/packages/cp-frontend/src/components/manifest/environment.js b/packages/cp-frontend/src/components/manifest/environment.js deleted file mode 100644 index abfe3230..00000000 --- a/packages/cp-frontend/src/components/manifest/environment.js +++ /dev/null @@ -1,83 +0,0 @@ -import React from 'react'; -import { Field } from 'redux-form'; -import remcalc from 'remcalc'; -import { Row } from 'react-styled-flexboxgrid'; -import { Button, Divider, H3, P } from 'joyent-ui-toolkit'; - -import { EEditor } from './editors'; -import Files from './files'; - -const EnvironmentDivider = Divider.extend`margin-top: ${remcalc(34)};`; -const ButtonsRow = Row.extend`margin: ${remcalc(29)} 0 ${remcalc(60)} 0;`; - -const Subtitle = H3.extend` - margin-top: ${remcalc(34)}; - margin-bottom: ${remcalc(3)}; -`; - -const Description = P.extend` - margin-top: ${remcalc(3)}; - margin-bottom: ${remcalc(20)}; -`; - -export const Environment = ({ - handleSubmit, - onCancel, - onAddFile, - onRemoveFile, - dirty, - defaultValue = '', - files = [], - readOnly = false, - loading -}) => { - const envEditor = !readOnly ? ( - - ) : ( - - ); - - const footerDivider = !readOnly ? : null; - - const footer = !readOnly ? ( - - - - - ) : null; - - return ( -
- Global variables - - These variables are going to be availabe for interpolation in the - manifest - - {envEditor} - - Enviroment files - - The variables from this files will be applied to the services that - require them - - - {footerDivider} - {footer} - - ); -}; - -export default Environment; \ No newline at end of file diff --git a/packages/cp-frontend/src/components/manifest/files.js b/packages/cp-frontend/src/components/manifest/files.js deleted file mode 100644 index 9064273b..00000000 --- a/packages/cp-frontend/src/components/manifest/files.js +++ /dev/null @@ -1,94 +0,0 @@ -import React from 'react'; -import { Field } from 'redux-form'; -import styled from 'styled-components'; -import remcalc from 'remcalc'; -import { EEditor } from './editors'; - -import { FormGroup, Input, Button, Card } from 'joyent-ui-toolkit'; - -const FilenameContainer = styled.span` - display: flex; - flex-direction: row; - flex-wrap: nowrap; - justify-content: space-between; - align-content: stretch; - align-items: stretch; -`; - -const FilenameInput = styled(Input)` - order: 0; - flex: 1 1 auto; - align-self: stretch; - margin: 0 0 ${remcalc(13)} 0; -`; - -const FilenameRemove = Button.extend` - order: 0; - flex: 0 1 auto; - align-self: auto; - margin: 0 0 0 ${remcalc(8)}; - height: ${remcalc(48)}; -`; - -const FileCard = Card.extend`padding: ${remcalc(24)} ${remcalc(19)};`; - -const File = ({ id, name, value, onRemoveFile, readOnly }) => { - const removeButton = !readOnly ? ( - - Remove - - ) : null; - - const fileEditor = !readOnly ? ( - - ) : ( - - ); - - const input = !readOnly ? ( - - ) : ( - - ); - - return ( - - - - {input} - {removeButton} - - - {fileEditor} - - ); -}; - -const Files = ({ files, onAddFile, onRemoveFile, readOnly }) => { - const footer = !readOnly ? ( - - ) : null; - - return ( -
- {files.map(({ id, ...rest }) => ( - onRemoveFile(id)} - readOnly={readOnly} - {...rest} - /> - ))} - {footer} -
- ); -}; - -export default Files; diff --git a/packages/cp-frontend/src/components/manifest/index.js b/packages/cp-frontend/src/components/manifest/index.js deleted file mode 100644 index fd7fb745..00000000 --- a/packages/cp-frontend/src/components/manifest/index.js +++ /dev/null @@ -1,8 +0,0 @@ -export { default as Files } from './files'; -export { default as Editors } from './editors'; -export { default as ManifestEditorBundle } from './manifest-editor'; -export { default as Manifest } from './manifest'; -export { default as Name } from './name'; -export { default as Review } from './review'; -export { default as Progress } from './progress'; -export { default as Environment } from './environment'; \ No newline at end of file diff --git a/packages/cp-frontend/src/components/manifest/manifest-editor.js b/packages/cp-frontend/src/components/manifest/manifest-editor.js deleted file mode 100644 index 5ac3924e..00000000 --- a/packages/cp-frontend/src/components/manifest/manifest-editor.js +++ /dev/null @@ -1,39 +0,0 @@ -import React, { Component } from 'react'; -import Bundle from 'react-bundle'; - -import { Loader } from '@components/messaging'; - -class ManifestEditorBundle extends Component { - constructor() { - super(); - - this.state = {}; - - this.handleRender = this.handleRender.bind(this); - } - handleRender(ManifestEditor) { - if (ManifestEditor) { - setTimeout(() => { - this.setState({ ManifestEditor }); - }, 80); - } - - return ; - } - render() { - if (!this.state.ManifestEditor) { - return ( - import('joyent-manifest-editor')}> - {this.handleRender} - - ); - } - - const { ManifestEditor } = this.state; - const { children, ...rest } = this.props; - - return {children}; - } -} - -export default ManifestEditorBundle; diff --git a/packages/cp-frontend/src/components/manifest/manifest.js b/packages/cp-frontend/src/components/manifest/manifest.js deleted file mode 100644 index ef0eabfd..00000000 --- a/packages/cp-frontend/src/components/manifest/manifest.js +++ /dev/null @@ -1,41 +0,0 @@ -import React from 'react'; -import { FormGroup, FormMeta, Button, FormLabel } from 'joyent-ui-toolkit'; -import { Row } from 'react-styled-flexboxgrid'; -import remcalc from 'remcalc'; -import { Field } from 'redux-form'; -import { MEditor } from './editors'; - -const ButtonsRow = Row.extend` - margin: ${remcalc(29)} 0 ${remcalc(60)} 0; -`; - -export const Manifest = ({ - handleSubmit, - onCancel, - dirty, - defaultValue = '', - loading -}) => ( -
- - - Project manifest - - - - - - - -
-); - -export default Manifest; diff --git a/packages/cp-frontend/src/components/manifest/name.js b/packages/cp-frontend/src/components/manifest/name.js deleted file mode 100644 index 35e7168d..00000000 --- a/packages/cp-frontend/src/components/manifest/name.js +++ /dev/null @@ -1,42 +0,0 @@ -import React from 'react'; -import { Row, Col } from 'react-styled-flexboxgrid'; -import remcalc from 'remcalc'; - -import { - FormMeta, - Button, - FormLabel, - Input, - Small, - FormGroup -} from 'joyent-ui-toolkit'; - -const ButtonsRow = Row.extend`margin: ${remcalc(29)} 0 ${remcalc(60)} 0;`; - -export const Name = ({ handleSubmit, onCancel, dirty }) => ( -
- - - - - Name the new deployment group - - Your services will be deployed to eu-east-1 data center. - - - - - - - - - - -
-); - -export default Name; diff --git a/packages/cp-frontend/src/components/manifest/progress.js b/packages/cp-frontend/src/components/manifest/progress.js deleted file mode 100644 index 4a10856b..00000000 --- a/packages/cp-frontend/src/components/manifest/progress.js +++ /dev/null @@ -1,77 +0,0 @@ -import React from 'react'; - -import { - Progressbar, - ProgressbarItem, - ProgressbarButton -} from 'joyent-ui-toolkit'; - -const Progress = ({ stage, create, edit }) => { - const _nameCompleted = stage !== 'name'; - const _nameActive = stage === 'name'; - - const _name = !create ? null : ( - - - Name the group - - - ); - - const _manifestCompleted = ['environment', 'review'].indexOf(stage) >= 0; - const _manifestActive = create ? stage === 'manifest' : stage === 'edit'; - - const _manifest = ( - - - Define Services - - - ); - - const _environmentCompleted = stage === 'review'; - const _environmentActive = stage === 'environment'; - - const _environment = ( - - - Define Environment - - - ); - - const _reviewActive = stage === 'review'; - - const _review = ( - - - Review and deploy - - - ); - - return ( - - {_name} - {_manifest} - {_environment} - {_review} - - ); -}; - -export default Progress; diff --git a/packages/cp-frontend/src/components/manifest/review.js b/packages/cp-frontend/src/components/manifest/review.js deleted file mode 100644 index 9f43d9bf..00000000 --- a/packages/cp-frontend/src/components/manifest/review.js +++ /dev/null @@ -1,123 +0,0 @@ -import React from 'react'; -import remcalc from 'remcalc'; -import { Row } from 'react-styled-flexboxgrid'; -import is from 'styled-is'; -import { - Button, - Divider, - H3, - P, - Chevron, - typography, - Card -} from 'joyent-ui-toolkit'; -import forceArray from 'force-array'; -import styled from 'styled-components'; - -import { EEditor } from './editors'; - -const ButtonsRow = Row.extend`margin: ${remcalc(29)} 0 ${remcalc(60)} 0;`; - -const ServiceEnvironmentTitle = P.extend` - margin: ${remcalc(13)} 0 0 0; - - ${is('expanded')` - margin-bottom: ${remcalc(13)}; - `}; -`; - -const ServiceName = H3.extend` - margin-top: 0; - margin-bottom: ${remcalc(5)}; - line-height: 1.6; - font-size: ${remcalc(18)}; -`; - -const ImageTitle = H3.extend` - display: inline-block; - margin: 0; -`; - -const Image = styled.span` - ${typography.fontFamily}; - font-size: ${remcalc(15)}; -`; - -const ServiceDivider = Divider.extend` - margin: ${remcalc(13)} ${remcalc(-20)} 0 ${remcalc(-20)}; -`; - -const ServiceCard = Card.extend` - padding: ${remcalc(13)} ${remcalc(19)}; - min-height: initial; -`; - -const Dl = styled.dl`margin: 0;`; - -const EnvironmentChevron = styled(Chevron)`float: right;`; - -const EnvironmentReview = ({ environment }) => { - const value = environment - .map(({ name, value }) => `${name}=${value}`) - .join('\n'); - - return ; -}; - -export const Review = ({ - handleSubmit, - onEnvironmentToggle = () => null, - onCancel, - dirty, - loading, - environmentToggles, - ...state -}) => { - const serviceList = forceArray(state.services).map(({ name, config }) => ( - - {name} -
-
- Image: {config.image} -
-
- {config.environment && config.environment.length ? ( - - ) : null} - {config.environment && config.environment.length ? ( - onEnvironmentToggle(name)} - > - Environment variables{' '} - - - ) : null} - {config.environment && - config.environment.length && - environmentToggles[name] ? ( - - ) : null} -
- )); - - return ( -
- {serviceList} - - - - -
- ); -}; - - -export default Review \ No newline at end of file diff --git a/packages/cp-frontend/src/components/messaging/error.js b/packages/cp-frontend/src/components/messaging/error.js deleted file mode 100644 index e4b76e5e..00000000 --- a/packages/cp-frontend/src/components/messaging/error.js +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { Message } from 'joyent-ui-toolkit'; - -const ErrorMessage = ({ title, message = "Ooops, there's been an error" }) => ( - -); - -ErrorMessage.propTypes = { - title: PropTypes.string, - message: PropTypes.string -}; - -export default ErrorMessage; diff --git a/packages/cp-frontend/src/components/messaging/index.js b/packages/cp-frontend/src/components/messaging/index.js deleted file mode 100644 index 8267241d..00000000 --- a/packages/cp-frontend/src/components/messaging/index.js +++ /dev/null @@ -1,4 +0,0 @@ -export { default as Loader } from './loader'; -export { default as ErrorMessage } from './error'; -export { default as WarningMessage } from './warning'; -export { default as ModalErrorMessage } from './modal-error'; diff --git a/packages/cp-frontend/src/components/messaging/loader.js b/packages/cp-frontend/src/components/messaging/loader.js deleted file mode 100644 index 7e4cd502..00000000 --- a/packages/cp-frontend/src/components/messaging/loader.js +++ /dev/null @@ -1,35 +0,0 @@ -import React from 'react'; -import styled from 'styled-components'; - -import { P, StatusLoader } from 'joyent-ui-toolkit'; - -const Container = styled.div` - display: flex; - flex-direction: column; - flex-wrap: nowrap; - justify-content: center; - align-content: center; - align-items: center; - - flex: 1 0 auto; - align-self: stretch; -`; - -const Loader = styled(StatusLoader)` - flex: 0 0 auto; - align-self: stretch; -`; - -const Msg = P.extend` - flex: 0 0 auto; - align-self: stretch; - text-align: center; - margin-bottom: 0; -`; - -export default ({ msg }) => ( - - - {msg || 'Loading...'} - -); diff --git a/packages/cp-frontend/src/components/messaging/modal-error.js b/packages/cp-frontend/src/components/messaging/modal-error.js deleted file mode 100644 index c7f5f0f9..00000000 --- a/packages/cp-frontend/src/components/messaging/modal-error.js +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import styled from 'styled-components'; -import { ModalHeading, ModalText, Button } from 'joyent-ui-toolkit'; - -const StyledHeading = styled(ModalHeading)` - color: ${props => props.theme.red}; -`; - -const ModalErrorMessage = ({ title, message, onCloseClick }) => ( -
- {title} - {message} - -
-); - -ModalErrorMessage.propTypes = { - title: PropTypes.string, - message: PropTypes.string.isRequired, - onCloseClick: PropTypes.func.isRequired -}; - -export default ModalErrorMessage; diff --git a/packages/cp-frontend/src/components/messaging/warning.js b/packages/cp-frontend/src/components/messaging/warning.js deleted file mode 100644 index 44134de0..00000000 --- a/packages/cp-frontend/src/components/messaging/warning.js +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { Message } from 'joyent-ui-toolkit'; - -const WarningMessage = ({ title, message }) => ( - -); - -WarningMessage.propTypes = { - title: PropTypes.string, - message: PropTypes.string.isRequired -}; - -export default WarningMessage; diff --git a/packages/cp-frontend/src/components/navigation/breadcrumb.js b/packages/cp-frontend/src/components/navigation/breadcrumb.js deleted file mode 100644 index 9784a4e6..00000000 --- a/packages/cp-frontend/src/components/navigation/breadcrumb.js +++ /dev/null @@ -1,55 +0,0 @@ -import React from 'react'; -import styled from 'styled-components'; -import { Grid, Col } from 'react-styled-flexboxgrid'; -import { Link } from 'react-router-dom'; -import forceArray from 'force-array'; -import PropTypes from 'prop-types'; -import remcalc from 'remcalc'; - -import { Breadcrumb, BreadcrumbItem } from 'joyent-ui-toolkit'; - -const BreadcrumbLink = styled(Link)` - text-decoration: none; - cursor: pointer; - - &:visited { - color: inherit; - } -`; - -const BreadcrumbContainer = styled.div` - border-bottom: solid ${remcalc(1)} ${props => props.theme.grey}; -`; - -const getBreadcrumbItems = (...links) => - forceArray(links).map(({ pathname, name }, i) => { - const item = - i + 1 >= links.length ? ( - name - ) : ( - {name} - ); - - return {item}; - }); - -const NavBreadcrumb = ({ links = [] }) => ( - - - - {getBreadcrumbItems(...links)} - - - -); - -NavBreadcrumb.propTypes = { - links: PropTypes.arrayOf( - PropTypes.shape({ - name: PropTypes.string, - pathname: PropTypes.string - }) - ) -}; - -export default NavBreadcrumb; diff --git a/packages/cp-frontend/src/components/navigation/header.js b/packages/cp-frontend/src/components/navigation/header.js deleted file mode 100644 index 5375a0e6..00000000 --- a/packages/cp-frontend/src/components/navigation/header.js +++ /dev/null @@ -1,48 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { Link } from 'react-router-dom'; -import { Img } from 'normalized-styled-components'; -import remcalc from 'remcalc'; -import styled from 'styled-components'; - -import Logo from '@assets/triton_logo.png'; -import { - Header, - HeaderBrand, - HeaderItem, - DataCenterIcon, - UserIcon -} from 'joyent-ui-toolkit'; -const StyledLogo = Img.extend` - width: ${remcalc(87)}; - height: ${remcalc(25)}; -`; - -const Item = styled.span` - padding-left: 5px; -`; - -const NavHeader = ({ datacenter, username }) => ( -
- - - - - - - - {datacenter} - - - - {username} - -
-); - -NavHeader.propTypes = { - datacenter: PropTypes.string, - username: PropTypes.string -}; - -export default NavHeader; diff --git a/packages/cp-frontend/src/components/navigation/index.js b/packages/cp-frontend/src/components/navigation/index.js deleted file mode 100644 index abc989cc..00000000 --- a/packages/cp-frontend/src/components/navigation/index.js +++ /dev/null @@ -1,5 +0,0 @@ -export { default as Breadcrumb } from './breadcrumb'; -export { default as Menu } from './menu'; -export { default as Header } from './header'; -export { default as Title } from './title'; -export { default as NotFound } from './not-found'; diff --git a/packages/cp-frontend/src/components/navigation/menu.js b/packages/cp-frontend/src/components/navigation/menu.js deleted file mode 100644 index 27bed5b0..00000000 --- a/packages/cp-frontend/src/components/navigation/menu.js +++ /dev/null @@ -1,37 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import forceArray from 'force-array'; - -import { LayoutContainer } from '@components/layout'; - -import { - SectionList, - SectionListItem, - SectionListNavLink -} from 'joyent-ui-toolkit'; - -const getMenuItems = (...links) => - forceArray(links).map(({ pathname, name }) => ( - - - {name} - - - )); - -const Menu = ({ links = [] }) => ( - - {getMenuItems(...links)} - -); - -Menu.propTypes = { - links: PropTypes.arrayOf( - PropTypes.shape({ - name: PropTypes.string, - pathname: PropTypes.string - }) - ) -}; - -export default Menu; diff --git a/packages/cp-frontend/src/components/navigation/not-found.js b/packages/cp-frontend/src/components/navigation/not-found.js deleted file mode 100644 index ecb81d3a..00000000 --- a/packages/cp-frontend/src/components/navigation/not-found.js +++ /dev/null @@ -1,44 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import styled from 'styled-components'; -import remcalc from 'remcalc'; -import { H1, P, Button } from 'joyent-ui-toolkit'; -import { LayoutContainer } from '@components/layout'; - -const StyledContainer = styled.div` - margin-top: ${remcalc(60)}; -`; - -const StyledTitle = styled(H1)` - font-weight: normal; - font-size: ${remcalc(32)}; -`; - -const StyledP = styled(P)` - margin-bottom: ${remcalc(30)}; - max-width: ${remcalc(490)}; -`; - -const NotFound = ({ - title = 'I have no memory of this place', - message = 'HTTP 404: We can’t find what you are looking for. Next time, always follow your nose.', - link = 'Back to dashboard', - to = '/deployment-groups' -}) => ( - - - {title} - {message} - - - -); - -NotFound.propTypes = { - title: PropTypes.string, - message: PropTypes.string, - link: PropTypes.string, - to: PropTypes.string -}; - -export default NotFound; diff --git a/packages/cp-frontend/src/components/navigation/title.js b/packages/cp-frontend/src/components/navigation/title.js deleted file mode 100644 index 923a4aa6..00000000 --- a/packages/cp-frontend/src/components/navigation/title.js +++ /dev/null @@ -1,8 +0,0 @@ -import { H2 } from 'joyent-ui-toolkit'; -import remcalc from 'remcalc'; - -export default H2.extend` - margin-top: ${remcalc(2)}; - flex: 0 0 auto; - align-self: stretch; -`; diff --git a/packages/cp-frontend/src/components/service/delete.js b/packages/cp-frontend/src/components/service/delete.js deleted file mode 100644 index 1fc75858..00000000 --- a/packages/cp-frontend/src/components/service/delete.js +++ /dev/null @@ -1,31 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { ModalHeading, ModalText, Button } from 'joyent-ui-toolkit'; - -const ServiceDelete = ({ - service, - onCancelClick = () => {}, - onConfirmClick = () => {} -}) => ( -
- - Deleting a service:
{service.name} -
- - Deleting a service can lead to irreversible loss of data and failures in - your application. Are you sure you want to continue? - - - -
-); - -ServiceDelete.propTypes = { - service: PropTypes.object.isRequired, - onCancelClick: PropTypes.func, - onConfirmClick: PropTypes.func -}; - -export default ServiceDelete; diff --git a/packages/cp-frontend/src/components/service/index.js b/packages/cp-frontend/src/components/service/index.js deleted file mode 100644 index 030c1f8f..00000000 --- a/packages/cp-frontend/src/components/service/index.js +++ /dev/null @@ -1,3 +0,0 @@ -export { default as ServiceScale } from './scale'; -export { default as ServiceDelete } from './delete'; -export { default as ServiceMetrics } from './metrics'; diff --git a/packages/cp-frontend/src/components/service/metrics.js b/packages/cp-frontend/src/components/service/metrics.js deleted file mode 100644 index ff9c94b4..00000000 --- a/packages/cp-frontend/src/components/service/metrics.js +++ /dev/null @@ -1,52 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import styled from 'styled-components'; -import remcalc from 'remcalc'; - -import { - MetricGraph, - Card, - CardView, - CardTitle, - CardHeader -} from 'joyent-ui-toolkit'; - -const MetricView = styled(CardView)` - padding-top: ${remcalc(48)}; - - & canvas { - margin: 0 auto; - } -`; - -const ServiceMetrics = ({ metricsData, graphDurationSeconds }) => { - // metricsData should prob be an array rather than an object - // should also have a header, w metric name and number of instances (omit everything else from design for copilot) - const metricGraphs = Object.keys(metricsData).map(key => ( - - - {key} - - - - - - )); - - // This needs layout!!! - return
{metricGraphs}
; -}; - -ServiceMetrics.propTypes = { - // metricsData should prob be an array rather than an object - metricsData: PropTypes.object.isRequired, - graphDurationSeconds: PropTypes.number.isRequired -}; - -export default ServiceMetrics; diff --git a/packages/cp-frontend/src/components/service/scale.js b/packages/cp-frontend/src/components/service/scale.js deleted file mode 100644 index 9abb89ee..00000000 --- a/packages/cp-frontend/src/components/service/scale.js +++ /dev/null @@ -1,50 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -import { ModalHeading, ModalText, Button } from 'joyent-ui-toolkit'; -import { - FormGroup, - NumberInput, - NumberInputNormalize, - FormMeta -} from 'joyent-ui-toolkit'; - -const ServiceScale = ({ - service, - handleSubmit = () => {}, - onCancel = () => {}, - invalid, - pristine -}) => ( -
- - Scaling a service:
- {service.name} -
- - Choose how many instances of a service you want to have running. - - - - - - - -
-); - -ServiceScale.propTypes = { - service: PropTypes.object.isRequired, - onSubmitClick: PropTypes.func, - onCancelClick: PropTypes.func -}; - -export default ServiceScale; diff --git a/packages/cp-frontend/src/components/services/empty.js b/packages/cp-frontend/src/components/services/empty.js deleted file mode 100644 index 00efc555..00000000 --- a/packages/cp-frontend/src/components/services/empty.js +++ /dev/null @@ -1,60 +0,0 @@ -import React from 'react'; -import styled from 'styled-components'; -import remcalc from 'remcalc'; - -import { LayoutContainer } from '@components/layout'; -import { Col, Row } from 'react-styled-flexboxgrid'; -import { Button, P, H2, H3 } from 'joyent-ui-toolkit'; - -const StyledBox = styled.div` - box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.05); - border: solid 1px #d8d8d8; - padding: ${remcalc('6 18 24')}; - - & + & { - margin-top: ${remcalc(24)}; - } -`; - -export default () => ( - - - -

Services

- - - - - -

Import your services

-

- You can import your services from a Git repository hosting - service. Learn more. -

- - - - -
-
- - - - -

Alternatively, you can upload or edit manifest file.

-

- Manifest is a file describing your services. It is similar - to Docker Compose file. You can upload a file from you local - machine or edit it manually. Learn more. -

- - - -
-
- -
- -
-
-); diff --git a/packages/cp-frontend/src/components/services/index.js b/packages/cp-frontend/src/components/services/index.js deleted file mode 100644 index f71b0664..00000000 --- a/packages/cp-frontend/src/components/services/index.js +++ /dev/null @@ -1,3 +0,0 @@ -export { default as EmptyServices } from './empty'; -export { default as ServiceListItem } from './list-item'; -export { default as ServicesQuickActions } from './quick-actions'; diff --git a/packages/cp-frontend/src/components/services/list-item.js b/packages/cp-frontend/src/components/services/list-item.js deleted file mode 100644 index 7e918f8f..00000000 --- a/packages/cp-frontend/src/components/services/list-item.js +++ /dev/null @@ -1,232 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import styled from 'styled-components'; -import forceArray from 'force-array'; -import sortBy from 'lodash.sortby'; -import { isNot } from 'styled-is'; -import { Col, Row } from 'react-styled-flexboxgrid'; -import remcalc from 'remcalc'; - -import { InstancesIcon, HealthyIcon } from 'joyent-ui-toolkit'; -import Status from './status'; - -import { - Small, - MetricGraph, - Card, - CardView, - CardTitle, - CardDescription, - CardGroupView, - CardOptions, - CardHeader, - CardInfo, - Anchor -} from 'joyent-ui-toolkit'; - -const StyledCardHeader = styled(CardHeader)` - position: relative; -`; - -const TitleInnerContainer = styled.div` - display: flex; - flex-direction: row; - justify-content: left; - align-items: center; -`; - -const StyledAnchor = styled(Anchor)` - ${isNot('active')` - color: ${props => props.theme.text} - `}; -`; - -const GraphsContainer = styled(Row)` - background: #f6f7fe; - width: 50%; - margin: 0; - flex: 1; -`; - -const GraphContainer = styled(Col)` - position: relative; - border-left: ${remcalc(1)} solid #d8d8d8; - padding-top: ${remcalc(20)}; -`; - -const GraphLeftShaddow = styled.div` - z-index: 99; - position: absolute; - margin-left: ${remcalc(-8)}; - margin-top: ${remcalc(-20)}; - width: ${remcalc(12)}; - height: 100%; - background-image: linear-gradient( - to right, - rgba(213, 216, 231, 0.8), - rgba(243, 244, 249, 0) - ); -`; - -const GraphTitle = Small.extend` - z-index: 99; - position: absolute; - top: 0; - left: 0; - right: 0; - height: ${remcalc(20)}; - border-bottom: ${remcalc(1)} solid #d8d8d8; - - font-size: ${remcalc(13)}; - text-align: center; - color: #494949; -`; - -const ChildTitle = styled(CardTitle)` - padding: 0; - flex: 0 1 auto; - align-self: stretch; -`; - -const ServiceView = styled(CardView)` - height: ${remcalc(120)}; -`; - -const StatusContainer = styled(CardDescription)` - display: flex; - flex-direction: column; - flex-wrap: nowrap; - justify-content: center; - align-content: center; - align-items: stretch; -`; - -const HealthInfoContainer = styled.div` - flex: 0 1 auto; - align-self: flex-end; - position: absolute; - bottom: 0; -`; - -const ServiceListItem = ({ - onQuickActionsClick = () => {}, - deploymentGroup = '', - service, - isChild = false -}) => { - const handleCardOptionsClick = evt => { - onQuickActionsClick(evt, service); - }; - - const children = sortBy(forceArray(service.children), ['slug']); - // const isServiceInactive = service.status && service.status !== 'ACTIVE'; - const to = `/deployment-groups/${deploymentGroup}/services/${service.slug}`; - - const instancesCount = children.length - ? children.reduce((count, child) => count + child.instances.length, 0) - : service.instances.length; - - const childrenItems = children.length - ? children.map(service => ( - - )) - : null; - - const title = isChild ? ( - {service.name} - ) : ( - - - - {service.name} - - - - ); - - const header = !isChild ? ( - - {title} - - } - iconPosition="left" - label={`${instancesCount} ${instancesCount > 1 - ? 'instances' - : 'instance'}`} - color={!service.instancesActive ? 'disabled' : 'light'} - /> - - - - ) : null; - - let healthyInfo = null; - if (service.instancesActive) { - const { total, healthy } = service.instancesHealthy; - const iconHealthy = total === healthy ? 'HEALTHY' : 'NOT HEALTHY'; - const icon = ; - const label = `${healthy} of ${total} healthy`; - - healthyInfo = ( - - ); - } - - const graphs = - !children.length && service.metrics && Object.keys(service.metrics).length - ? Object.keys(service.metrics).map(key => ( - - - {key} - - - )) - : null; - - const metrics = graphs ? {graphs} : null; - - const view = children.length ? ( - {childrenItems} - ) : ( - - - {isChild && title} - - {healthyInfo} - - {metrics} - - ); - - return ( - 1} - > - {header} - {view} - - ); -}; - -ServiceListItem.propTypes = { - onQuickActionsClick: PropTypes.func, - deploymentGroup: PropTypes.string, - service: PropTypes.object.isRequired // Define better -}; - -export default ServiceListItem; \ No newline at end of file diff --git a/packages/cp-frontend/src/components/services/quick-actions.js b/packages/cp-frontend/src/components/services/quick-actions.js deleted file mode 100644 index de66ecae..00000000 --- a/packages/cp-frontend/src/components/services/quick-actions.js +++ /dev/null @@ -1,109 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { - Tooltip, - TooltipButton, - TooltipDivider, - TooltipList -} from 'joyent-ui-toolkit'; - -const ServicesQuickActions = ({ - show, - position, - service, - onBlur = () => {}, - onRestartClick = () => {}, - onStopClick = () => {}, - onStartClick = () => {}, - onScaleClick = () => {}, - onDeleteClick = () => {} -}) => { - if (!show) { - return null; - } - - const handleRestartClick = evt => { - onRestartClick(evt, service); - }; - - const handleStartClick = evt => { - onStartClick(evt, service); - }; - - const handleStopClick = evt => { - onStopClick(evt, service); - }; - - const handleScaleClick = evt => { - onScaleClick(evt, service); - }; - - const handleDeleteClick = evt => { - onDeleteClick(evt, service); - }; - - const disabled = service.transitionalStatus; - - const status = service.instances.reduce((status, instance) => { - return status - ? instance.status === status ? status : 'MIXED' - : instance.status; - }, null); - - const startService = - status === 'RUNNING' ? null : ( -
  • - - Start - -
  • - ); - - const stopService = - status === 'STOPPED' ? null : ( -
  • - - Stop - -
  • - ); - - return ( - - -
  • - - Scale - -
  • -
  • - - Restart - -
  • - {startService} - {stopService} - -
  • - - Delete - -
  • -
    -
    - ); -}; - -ServicesQuickActions.propTypes = { - service: PropTypes.object.isRequired, - position: PropTypes.object, - show: PropTypes.bool, - onBlur: PropTypes.func, - onRestartClick: PropTypes.func, - onStopClick: PropTypes.func, - onStartClick: PropTypes.func, - onScaleClick: PropTypes.func, - onDeleteClick: PropTypes.func -}; - -export default ServicesQuickActions; diff --git a/packages/cp-frontend/src/components/services/status.js b/packages/cp-frontend/src/components/services/status.js deleted file mode 100644 index 3aed4b49..00000000 --- a/packages/cp-frontend/src/components/services/status.js +++ /dev/null @@ -1,59 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import styled from 'styled-components'; -import remcalc from 'remcalc'; -import { StatusLoader, P } from 'joyent-ui-toolkit'; - -const StyledStatusContainer = styled.div` - display: inline-block; - margin: 0; - - flex: 1 1 auto; - align-self: stretch; -`; - -const StyledStatus = P.extend` - margin: 0 0 ${remcalc(6)} 0; - font-size: ${remcalc(13)}; - line-height: ${remcalc(13)}; -`; - -const StyledTransitionalStatus = StyledStatus.extend` - display: inline-block; - margin-left: ${remcalc(6)}; - text-transform: capitalize; -`; - -const ServiceStatus = ({ service }) => { - const getInstanceStatuses = instanceStatuses => - instanceStatuses.map((instanceStatus, index) => { - const { status, count } = instanceStatus; - - return ( - - {`${count} - ${count > 1 ? 'instances' : 'instance'} - ${status.toLowerCase()}`} - - ); - }); - - return service.transitionalStatus ? ( - - - - {service.status ? service.status.toLowerCase() : ''} - - - ) : ( - - {getInstanceStatuses(service.instanceStatuses)} - - ); -}; - -ServiceStatus.propTypes = { - service: PropTypes.object.isRequired -}; - -export default ServiceStatus; diff --git a/packages/cp-frontend/src/containers/deployment-group/delete.js b/packages/cp-frontend/src/containers/deployment-group/delete.js deleted file mode 100644 index 0251e533..00000000 --- a/packages/cp-frontend/src/containers/deployment-group/delete.js +++ /dev/null @@ -1,123 +0,0 @@ -import React, { Component } from 'react'; -import PropTypes from 'prop-types'; -import { compose, graphql } from 'react-apollo'; -import DeploymentGroupDeleteMutation from '@graphql/DeploymentGroupDeleteMutation.gql'; -import DeploymentGroupQuery from '@graphql/DeploymentGroup.gql'; -import { Loader, ModalErrorMessage } from '@components/messaging'; -import { DeploymentGroupDelete as DeploymentGroupDeleteComponent } from '@components/deployment-group'; -import { Modal } from 'joyent-ui-toolkit'; -import { withNotFound, GqlPaths } from '@containers/navigation'; - -export class DeploymentGroupDelete extends Component { - constructor(props) { - super(props); - - this.state = { - error: null - }; - } - - render() { - const { history, match, loading, error } = this.props; - - const handleCloseClick = evt => { - const closeUrl = match.url - .split('/') - .slice(0, -2) - .join('/'); - history.replace(closeUrl); - }; - - if (loading) { - return ( - - - - ); - } - - if (error) { - return ( - - - - ); - } - - const { deploymentGroup, deleteDeploymentGroup } = this.props; - - if (this.state.error) { - return ( - - - - ); - } - - const handleConfirmClick = evt => { - deleteDeploymentGroup(deploymentGroup.id) - .then(() => handleCloseClick()) - .catch(err => { - this.setState({ error: err }); - }); - }; - - return ( - - - - ); - } -} - -DeploymentGroupDelete.propTypes = { - deploymentGroup: PropTypes.object, - history: PropTypes.object, - deleteDeploymentGroup: PropTypes.func.isRequired -}; - -const DeleteDeploymentGroupGql = graphql(DeploymentGroupDeleteMutation, { - props: ({ mutate }) => ({ - deleteDeploymentGroup: deploymentGroupId => - mutate({ - variables: { id: deploymentGroupId } - }) - }) -}); - -const DeploymentGroupGql = graphql(DeploymentGroupQuery, { - options(props) { - const params = props.match.params; - const deploymentGroupSlug = params.deploymentGroup; - return { - variables: { - deploymentGroupSlug - } - }; - }, - props: ({ data: { deploymentGroup, loading, error } }) => ({ - deploymentGroup, - loading, - error - }) -}); - -const DeploymentGroupDeleteWithData = compose( - DeleteDeploymentGroupGql, - DeploymentGroupGql, - withNotFound([GqlPaths.DEPLOYMENT_GROUP]) -)(DeploymentGroupDelete); - -export default DeploymentGroupDeleteWithData; diff --git a/packages/cp-frontend/src/containers/deployment-group/index.js b/packages/cp-frontend/src/containers/deployment-group/index.js deleted file mode 100644 index 0f0cb91b..00000000 --- a/packages/cp-frontend/src/containers/deployment-group/index.js +++ /dev/null @@ -1 +0,0 @@ -export { default as DeploymentGroupDelete } from './delete'; \ No newline at end of file diff --git a/packages/cp-frontend/src/containers/deployment-groups/create.js b/packages/cp-frontend/src/containers/deployment-groups/create.js deleted file mode 100644 index d79283c7..00000000 --- a/packages/cp-frontend/src/containers/deployment-groups/create.js +++ /dev/null @@ -1,25 +0,0 @@ -import React from 'react'; -import { graphql } from 'react-apollo'; -import get from 'lodash.get'; - -import ManifestEditOrCreate from '@containers/manifest/edit-or-create'; -import { Progress } from '@components/manifest'; -import { LayoutContainer } from '@components/layout'; -import { Title } from '@components/navigation'; -import PortalQuery from '@graphql/Portal.gql'; - -const DeploymentGroupCreate = ({ match, dataCenter }) => ( - - Creating deployment group - - - -); - -const DeploymentGroupCreateWithData = graphql(PortalQuery, { - props: ({ data: { portal = {} } }) => ({ - dataCenter: get(portal, 'datacenter.region', '') - }) -})(DeploymentGroupCreate); - -export default DeploymentGroupCreateWithData; \ No newline at end of file diff --git a/packages/cp-frontend/src/containers/deployment-groups/import.js b/packages/cp-frontend/src/containers/deployment-groups/import.js deleted file mode 100644 index ed9dda5b..00000000 --- a/packages/cp-frontend/src/containers/deployment-groups/import.js +++ /dev/null @@ -1,69 +0,0 @@ -import React, { Component } from 'react'; -import { graphql } from 'react-apollo'; -import intercept from 'apr-intercept'; - -import DeploymentGroupImportMutation from '@graphql/DeploymentGroupImport.gql'; - -import { LayoutContainer } from '@components/layout'; -import { Title } from '@components/navigation'; -import { ErrorMessage, Loader } from '@components/messaging'; - -class DeploymentGroupImport extends Component { - constructor() { - super(); - - this.state = { - error: false - }; - - setTimeout(this.importDeploymentGroup, 16); - } - - importDeploymentGroup = async () => { - const { importDeploymentGroup, match, history } = this.props; - const { slug } = match.params; - - const [error] = await intercept( - importDeploymentGroup({ - slug - }) - ); - - if (error) { - return this.setState({ loading: false, error }); - } - - history.push(`/deployment-groups/${slug}`); - }; - - render() { - const { error } = this.state; - - const _title = Importing deployment group; - - if (error) { - return ( - - {_title} - - - ); - } - - return ( - - {_title} - - - ); - } -} - -export default graphql(DeploymentGroupImportMutation, { - props: ({ mutate }) => ({ - importDeploymentGroup: variables => mutate({ variables }) - }) -})(DeploymentGroupImport); diff --git a/packages/cp-frontend/src/containers/deployment-groups/index.js b/packages/cp-frontend/src/containers/deployment-groups/index.js deleted file mode 100644 index 6f8944a3..00000000 --- a/packages/cp-frontend/src/containers/deployment-groups/index.js +++ /dev/null @@ -1,3 +0,0 @@ -export { default as DeploymentGroupList } from './list'; -export { default as DeploymentGroupCreate } from './create'; -export { default as DeploymentGroupImport } from './import'; diff --git a/packages/cp-frontend/src/containers/deployment-groups/list.js b/packages/cp-frontend/src/containers/deployment-groups/list.js deleted file mode 100644 index 33f33fb9..00000000 --- a/packages/cp-frontend/src/containers/deployment-groups/list.js +++ /dev/null @@ -1,214 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { compose, graphql } from 'react-apollo'; -import { Link } from 'react-router-dom'; -import styled from 'styled-components'; -import { Col, Row } from 'react-styled-flexboxgrid'; -import forceArray from 'force-array'; -import remcalc from 'remcalc'; - -import { LayoutContainer } from '@components/layout'; -import { Title } from '@components/navigation'; -import { ErrorMessage, Loader } from '@components/messaging'; -import DeploymentGroupsQuery from '@graphql/DeploymentGroups.gql'; -import DeploymentGroupsImportableQuery from '@graphql/DeploymentGroupsImportable.gql'; -import { H3, Small, IconButton, BinIcon } from 'joyent-ui-toolkit'; -import { withNotFound, GqlPaths } from '@containers/navigation'; - -const DGsRows = Row.extend` - margin-top: ${remcalc(-7)}; -`; - -const Box = styled.div` - position: relative; - text-decoration: none; - color: ${props => props.theme.secondary}; - background-color: ${props => props.theme.white}; - box-shadow: 0 ${remcalc(2)} 0 0 rgba(0, 0, 0, 0.05); - border: solid ${remcalc(1)} ${props => props.theme.grey}; - margin-top: ${remcalc(20)}; - margin-bottom: 0; - padding: ${remcalc(18)}; - min-height: ${remcalc(258)}; - display: flex; - flex-direction: column; - - &:last-child { - margin-bottom: ${remcalc(20)}; - } -`; - -const BoxCreate = Box.extend` - background-color: ${props => props.theme.disabled}; - - &:hover { - background-color: ${props => props.theme.white}; - } -`; - -const Oval = styled.div` - border: solid ${remcalc(1)} ${props => props.theme.grey}; - border-radius: 50%; - - width: ${remcalc(48)}; - height: ${remcalc(48)}; - line-height: ${remcalc(48)}; - font-size: ${remcalc(24)}; - text-align: center; - - margin-bottom: ${remcalc(20)}; -`; - -const CreateTitle = Small.extend` - font-weight: 600; - text-align: center; -`; - -const ServiceTitle = H3.extend` - margin-top: ${remcalc(10)}; - font-weight: 600; -`; - -const StyledLink = styled(Link)` - display: flex; - flex-grow: 1; - text-decoration: none; - color: ${props => props.theme.secondary}; -`; - -const StyledCreateLink = styled(StyledLink)` - flex-direction: column; - justify-content: center; - align-items: center; - align-content: center; - display: flex; -`; - -const StyledIconButton = styled(IconButton)` - position: absolute; - right: 0; - bottom: 0; - border: none; - - &:hover, - &:focus, - &:active, - &:active:hover, - &:active:focus { - background-color: ${props => props.theme.white}; - } - - &:focus > svg, - &:hover > svg { - fill: ${props => props.theme.red}; - } - - &:active > svg, - &:active:hover > svg, - &:active:focus > svg { - fill: ${props => props.theme.redDark}; - } -`; - -export const DeploymentGroupList = ({ - deploymentGroups, - importable, - loading, - error, - match -}) => { - const _title = Deployment groups; - - if (loading && (!deploymentGroups || !deploymentGroups.length)) { - return ( - - - - ); - } - - const _error = - error && (!deploymentGroups || !deploymentGroups.length) ? ( - - ) : null; - - const groups = forceArray(deploymentGroups).map(({ slug, name }) => ( - - - - {name} - - - - - - - )); - - const create = [ - - - - + - Create new deployment group - - - - ].concat( - forceArray(importable).map(({ slug, name }) => ( - - - - - {name} - - - - )) - ); - - return ( - - {_title} - {_error} - - {groups} - {create} - - - ); -}; - -DeploymentGroupList.propTypes = { - deploymentGroups: PropTypes.arrayOf( - PropTypes.shape({ - id: PropTypes.string, - name: PropTypes.string - }) - ) -}; - -export default compose( - graphql(DeploymentGroupsQuery, { - options: { - pollInterval: 1000 - }, - props: ({ data: { deploymentGroups, loading, error } }) => ({ - deploymentGroups: - deploymentGroups && deploymentGroups.length - ? deploymentGroups.filter(dg => dg.status !== 'DELETED') - : null, - loading, - error - }) - }), - graphql(DeploymentGroupsImportableQuery, { - props: ({ data: { importableDeploymentGroups } }) => ({ - importable: importableDeploymentGroups - }) - }), - withNotFound([GqlPaths.DEPLOYMENT_GROUP]) -)(DeploymentGroupList); diff --git a/packages/cp-frontend/src/containers/environment/index.js b/packages/cp-frontend/src/containers/environment/index.js deleted file mode 100644 index aa578d1a..00000000 --- a/packages/cp-frontend/src/containers/environment/index.js +++ /dev/null @@ -1,64 +0,0 @@ -import React from 'react'; -import { compose, graphql } from 'react-apollo'; -import get from 'lodash.get'; - -import ManifestQuery from '@graphql/Manifest.gql'; - -import { LayoutContainer } from '@components/layout'; -import { Title } from '@components/navigation'; -import { Loader, ErrorMessage } from '@components/messaging'; -import { Environment } from '@components/manifest'; - -const EnvironmentReadOnly = ({ - files = [], - environment = '', - loading, - error -}) => { - const _title = Environment; - - if (loading && !environment.length && !files.length) { - return ( - - {_title} - - - ); - } - - if (error) { - return ( - - {_title} - - - ); - } - - return ( - - {_title} - - - ); -}; - -export default compose( - graphql(ManifestQuery, { - options: props => ({ - fetchPolicy: 'cache-and-network', - variables: { - deploymentGroupSlug: props.match.params.deploymentGroup - } - }), - props: ({ data: { deploymentGroup, loading, error } }) => ({ - files: get(deploymentGroup, 'version.manifest.files', []), - environment: get(deploymentGroup, 'version.manifest.environment', ''), - loading, - error - }) - }) -)(EnvironmentReadOnly); diff --git a/packages/cp-frontend/src/containers/instances/index.js b/packages/cp-frontend/src/containers/instances/index.js deleted file mode 100644 index 31bb602e..00000000 --- a/packages/cp-frontend/src/containers/instances/index.js +++ /dev/null @@ -1,2 +0,0 @@ -export { default as InstanceList } from './list'; -export { default as InstancesTooltip } from './tooltip'; diff --git a/packages/cp-frontend/src/containers/instances/list.js b/packages/cp-frontend/src/containers/instances/list.js deleted file mode 100644 index 3d42c637..00000000 --- a/packages/cp-frontend/src/containers/instances/list.js +++ /dev/null @@ -1,151 +0,0 @@ -import React from 'react'; -import { compose, graphql } from 'react-apollo'; -import { connect } from 'react-redux'; -import InstancesQuery from '@graphql/Instances.gql'; -import forceArray from 'force-array'; -import sortBy from 'lodash.sortby'; - -import { LayoutContainer } from '@components/layout'; -import { Title } from '@components/navigation'; -import { Loader, ErrorMessage } from '@components/messaging'; -import { InstanceListItem, EmptyInstances } from '@components/instances'; -import { toggleInstancesTooltip } from '@root/state/actions'; -import { withNotFound, GqlPaths } from '@containers/navigation'; - -export const InstanceList = ({ - deploymentGroup, - instances = [], - loading, - error, - instancesTooltip, - toggleInstancesTooltip -}) => { - const _title = Instances; - - if (loading && !forceArray(instances).length) { - return ( - - {_title} - - - ); - } - - if (error) { - return ( - - {_title} - - - ); - } - - if (deploymentGroup.status === 'PROVISIONING' && !instances.length) { - return ( - - {_title} - - - ); - } - - const handleHealthMouseOver = (evt, instance) => { - handleMouseOver(evt, instance, 'healthy'); - }; - - const handleStatusMouseOver = (evt, instance) => { - handleMouseOver(evt, instance, 'status'); - }; - - const handleMouseOver = (evt, instance, type) => { - const label = evt.currentTarget; - const labelRect = label.getBoundingClientRect(); - const offset = type === 'healthy' ? 48 : type === 'status' ? 36 : 0; - - const position = { - left: `${window.scrollX + labelRect.left + offset}px`, - top: `${window.scrollY + labelRect.bottom}px` - }; - - const tooltipData = { - instance, - position, - type - }; - - toggleInstancesTooltip(tooltipData); - }; - - const handleMouseOut = evt => { - toggleInstancesTooltip({ show: false }); - }; - - const instanceList = instances.map((instance, index) => ( - - )); - - const _instances = !instanceList.length ? : instanceList; - - return ( - - {_title} - {_instances} - - ); -}; - -const mapStateToProps = (state, ownProps) => ({ - instancesTooltip: state.ui.instances.tooltip -}); - -const mapDispatchToProps = dispatch => ({ - toggleInstancesTooltip: data => dispatch(toggleInstancesTooltip(data)) -}); - -const UiConnect = connect(mapStateToProps, mapDispatchToProps); - -const InstanceListGql = graphql(InstancesQuery, { - options(props) { - const params = props.match.params; - const deploymentGroupSlug = params.deploymentGroup; - const serviceSlug = params.service; - - return { - pollInterval: 1000, - variables: { - deploymentGroupSlug, - serviceSlug - } - }; - }, - props: ({ data: { deploymentGroup, loading, error } }) => ({ - deploymentGroup, - instances: sortBy( - forceArray( - deploymentGroup && - forceArray(deploymentGroup.services).reduce( - (instances, service) => instances.concat(service.instances), - [] - ) - ).filter(Boolean), - ['name'] - ), - loading, - error - }) -}); - -export default compose( - UiConnect, - InstanceListGql, - withNotFound([GqlPaths.DEPLOYMENT_GROUP, GqlPaths.SERVICES]) -)(InstanceList); diff --git a/packages/cp-frontend/src/containers/instances/tooltip.js b/packages/cp-frontend/src/containers/instances/tooltip.js deleted file mode 100644 index b629d920..00000000 --- a/packages/cp-frontend/src/containers/instances/tooltip.js +++ /dev/null @@ -1,64 +0,0 @@ -import React from 'react'; -import { connect } from 'react-redux'; -import styled from 'styled-components'; -import { Tooltip, TooltipLabel } from 'joyent-ui-toolkit'; - -const StyledContainer = styled.div` - position: absolute; - top: 0; - left: 0; -`; - -const healthMessages = { - healthy: 'Your instance is operating as expected', - unhealthy: 'Your instance is not operating as expected', - maintenance: - "You've set your instance to this manually, use the Container Pilot CLI to change", - unknown: "We've connected to your instance but we have no health information", - unavailable: 'We cannot connect to your instance' -}; - -const statusMessages = { - running: 'Your instance is operating', - provisioning: 'Your instance is downloading dependencies and compiling', - ready: - "Your instance finished provisioning and is ready to be run, it'll be running soon", - stopping: 'Your instance is going to be stopped soon', - stopped: "Your instance isn't doing anything, you can start it", - offline: 'We have no idea what this means, do you??????', - failed: 'Your instance has crashed', - unknown: 'We cannot work out what status your instance is in' -}; - -export const InstancesTooltip = ({ instancesTooltip }) => { - if (instancesTooltip.show) { - const { type, instance } = instancesTooltip; - - const message = - type === 'healthy' - ? healthMessages[(instance.healthy || '').toLowerCase()] - : type === 'status' - ? statusMessages[(instance.status || '').toLowerCase()] - : ''; - - return ( - - - {message} - - - ); - } - - return null; -}; - -const mapStateToProps = (state, ownProps) => ({ - instancesTooltip: state.ui.instances.tooltip -}); - -const mapDispatchToProps = dispatch => ({}); - -const UiConnect = connect(mapStateToProps, mapDispatchToProps); - -export default UiConnect(InstancesTooltip); diff --git a/packages/cp-frontend/src/containers/manifest/edit-or-create.js b/packages/cp-frontend/src/containers/manifest/edit-or-create.js deleted file mode 100644 index d034666b..00000000 --- a/packages/cp-frontend/src/containers/manifest/edit-or-create.js +++ /dev/null @@ -1,513 +0,0 @@ -import React, { Component } from 'react'; -import { reduxForm } from 'redux-form'; -import { compose, graphql } from 'react-apollo'; -import { withRouter } from 'react-router'; -import { Redirect } from 'react-router-dom'; -import intercept from 'apr-intercept'; -import paramCase from 'param-case'; -import get from 'lodash.get'; -import remove from 'lodash.remove'; -import flatten from 'lodash.flatten'; -import uniq from 'lodash.uniq'; -import find from 'lodash.find'; -import { safeLoad } from 'js-yaml'; -import uuid from 'uuid/v4'; -import forceArray from 'force-array'; - -import DeploymentGroupBySlugQuery from '@graphql/DeploymentGroupBySlug.gql'; -import DeploymentGroupCreateMutation from '@graphql/DeploymentGroupCreate.gql'; -import DeploymentGroupProvisionMutation from '@graphql/DeploymentGroupProvision.gql'; -import DeploymentGroupConfigQuery from '@graphql/DeploymentGroupConfig.gql'; -import PortalQuery from '@graphql/Portal.gql'; - -import { client } from '@state/store'; -import { ErrorMessage } from '@components/messaging'; -import { Environment, Name, Review, Manifest } from '@components/manifest'; - -const INTERPOLATE_REGEX = /\$([_a-z][_a-z0-9]*)/gi; -const CNS_PRIVATE = 'TRITON_CNS_SEARCH_DOMAIN_PRIVATE'; -const CNS_PUBLIC = 'TRITON_CNS_SEARCH_DOMAIN_PUBLIC'; - -// TODO: move state to redux. why: because in redux we can cache transactional -// state between refreshes -class DeploymentGroupEditOrCreate extends Component { - constructor(props) { - super(props); - - const { create, files = [], manifest } = props; - const type = create ? 'create' : 'edit'; - - const NameForm = - create && - reduxForm({ - form: `${type}-deployment-group`, - destroyOnUnmount: true, - forceUnregisterOnUnmount: true, - asyncValidate: async ({ name = '' }) => { - const [err, res] = await intercept( - client.query({ - fetchPolicy: 'network-only', - query: DeploymentGroupBySlugQuery, - variables: { - slug: paramCase(name.trim()) - } - }) - ); - - if (err) { - return; - } - - if (!res.data.deploymentGroups.length) { - return; - } - - // eslint-disable-next-line no-throw-literal - throw { name: `"${name}" already exists!` }; - } - })(Name); - - const ManifestForm = reduxForm({ - form: `${type}-deployment-group` - })(Manifest); - - const ReviewForm = reduxForm({ - form: `${type}-deployment-group` - })(Review); - - this.state = { - type, - defaultStage: create ? 'name' : 'edit', - manifestStage: create ? 'manifest' : 'edit', - name: '', - manifest: '', - environment: '', - files: this.resolveManifestFiles(files, manifest), - services: [], - environmentToggles: {}, - loading: false, - error: null, - NameForm, - ReviewForm, - ManifestForm - }; - - this.state.EnvironmentForm = this.getEnvironmentForm( - this.state.files, - manifest - ); - - this.stages = { - name: create && this.renderNameForm.bind(this), - [create ? 'manifest' : 'edit']: this.renderManifestEditor.bind(this), - environment: this.renderEnvironmentEditor.bind(this), - review: this.renderReview.bind(this) - }; - - this.handleNameSubmit = - type === 'create' && this.handleNameSubmit.bind(this); - - this.handleManifestSubmit = this.handleManifestSubmit.bind(this); - this.handleEnvironmentSubmit = this.handleEnvironmentSubmit.bind(this); - this.handleReviewSubmit = this.handleReviewSubmit.bind(this); - this.handleCancel = this.handleCancel.bind(this); - this.handleFileAdd = this.handleFileAdd.bind(this); - this.handleRemoveFile = this.handleRemoveFile.bind(this); - this.handleEnvironmentToggle = this.handleEnvironmentToggle.bind(this); - } - - resolveManifestFiles(currentFiles = [], manifestStr = '') { - if (!manifestStr.length) { - return []; - } - - let manifest = {}; - - try { - manifest = safeLoad(manifestStr); - } catch (err) { - console.error(err); - return []; - } - - const services = manifest.services ? manifest.services : manifest; - - const filenames = uniq( - // eslint-disable-next-line camelcase - flatten(Object.values(services).map(({ env_file }) => env_file)) - ); - - return filenames - .filter(Boolean) - .filter(filename => !find(currentFiles, ['name', filename])) - .map(this.getDefaultFile) - .concat(currentFiles); - } - - getEnvironmentForm(files = [], manifest = '') { - const { type } = this.state; - - const initialValues = files.reduce( - (acc, { id, name, value }) => - Object.assign(acc, { - [`file-name-${id}`]: name, - [`file-value-${id}`]: value - }), - {} - ); - - return reduxForm({ - form: `${type}-deployment-group`, - initialValues - })(Environment); - } - - getEnvironmentDefaultValue() { - const { environment = '' } = this.props; - const { manifest = '' } = this.state; - - if (environment.length) { - return environment; - } - - const searchDomain = [ - `${CNS_PRIVATE}=${this.props.tritonId}.${this.props - .dataCenter}.cns.joyent.com`, - `${CNS_PUBLIC}=${this.props.tritonId}.${this.props - .dataCenter}.triton.zone` - ].join('\n'); - - const names = forceArray(manifest.match(INTERPOLATE_REGEX)) - .map(name => name.replace(/^\$/, '')) - .filter(name => [CNS_PRIVATE, CNS_PUBLIC].indexOf(name) < 0); - - const vars = uniq(names) - .map(name => `\n${name}=`) - .join(''); - - return `${searchDomain}\n\n# define your interpolatable variables here\n${vars}`; - } - - getDefaultFile(name = '') { - return { - id: uuid(), - name, - value: '# define your environment variables here\n' - }; - } - - createDeploymentGroup = async () => { - const { createDeploymentGroup, deploymentGroup, edit } = this.props; - - if (edit && (!deploymentGroup || !deploymentGroup.id)) { - this.setState({ - error: 'Unexpected Error: Inexistent DeploymentGroup!' - }); - - return {}; - } - - if (deploymentGroup && deploymentGroup.id) { - return deploymentGroup; - } - - const { name } = this.state; - - const [err, res] = await intercept(createDeploymentGroup({ name })); - - if (err) { - this.setState({ - error: err.message - }); - } - - return err ? {} : res.data.createDeploymentGroup; - }; - - provision = async deploymentGroupId => { - const { manifest, environment, files } = this.state; - const { provisionManifest } = this.props; - - const [err] = await intercept( - provisionManifest({ - deploymentGroupId, - type: 'COMPOSE', - format: 'YAML', - environment: environment || '', - files, - raw: manifest - }) - ); - - if (err) { - this.setState({ - error: err.message - }); - } - - return err ? null : true; - }; - - handleNameSubmit({ name = '' }) { - this.setState({ name }, () => - this.redirect({ stage: 'manifest', prog: true }) - ); - } - - handleManifestSubmit({ manifest = '' }) { - const { files } = this.state; - - const _manifest = manifest || this.props.manifest; - const _files = this.resolveManifestFiles(files, _manifest); - - const EnvironmentForm = this.getEnvironmentForm(_files, _manifest); - - this.setState( - { manifest: _manifest, EnvironmentForm, files: _files }, - () => { - this.redirect({ stage: 'environment', prog: true }); - } - ); - } - - handleEnvironmentSubmit(change) { - const { environment = '' } = change; - const { name, manifest } = this.state; - - const files = Object.values( - Object.keys(change).reduce((acc, key) => { - const match = key.match(/file-(name|value)-(.*)/); - - if (!match) { - return acc; - } - - const [_, type, id] = match; - - if (!acc[id]) { - acc[id] = { - id - }; - } - - acc[id][type] = change[key]; - return acc; - }, {}) - ); - - const getConfig = async () => { - const { environment } = this.state; - - const [err, conf] = await intercept( - client.query({ - query: DeploymentGroupConfigQuery, - fetchPolicy: 'network-only', - variables: { - deploymentGroupName: name, - type: 'COMPOSE', - format: 'YAML', - environment: environment || '', - files, - raw: manifest - } - }) - ); - - if (err) { - return this.setState({ - error: err.message - }); - } - - const { data } = conf; - const { config: services } = data; - - this.setState({ loading: false, services, files }, () => { - this.redirect({ stage: 'review', prog: true }); - }); - }; - - this.setState( - { - environment: environment || this.getEnvironmentDefaultValue(), - loading: true - }, - getConfig - ); - } - - handleReviewSubmit() { - const { history } = this.props; - - const submit = async () => { - const { id, slug } = await this.createDeploymentGroup(); - - if (!id) { - return; - } - - const manifest = await this.provision(id); - - if (!manifest) { - return; - } - - history.push(`/deployment-groups/${slug}`); - }; - - this.setState({ loading: true }, submit); - } - - handleCancel() { - const { history, create, deploymentGroup } = this.props; - - history.push(create ? '/' : `/deployment-groups/${deploymentGroup.slug}`); - - return false; - } - - handleFileAdd() { - const { files = [] } = this.state; - - this.setState({ - files: files.concat([this.getDefaultFile()]) - }); - } - - handleRemoveFile(fileId) { - const { files = [] } = this.state; - - this.setState({ - files: remove(files, ({ id }) => id !== fileId) - }); - } - - handleEnvironmentToggle(serviceName) { - const { environmentToggles } = this.state; - - this.setState({ - environmentToggles: Object.assign({}, environmentToggles, { - [serviceName]: !environmentToggles[serviceName] - }) - }); - } - - redirect({ stage = 'name', prog = false }) { - const { match, history, create } = this.props; - - const regex = create ? /\/~create(.*)/ : /\/manifest(.*)/; - const to = match.url.replace( - regex, - create ? `/~create/${stage}` : `/manifest/${stage}` - ); - - if (!prog) { - return ; - } - - history.push(to); - } - - renderNameForm() { - const { NameForm } = this.state; - const { dataCenter } = this.props; - - return ( - - ); - } - - renderManifestEditor() { - const { ManifestForm } = this.state; - - return ( - - ); - } - - renderEnvironmentEditor() { - const { EnvironmentForm, files, loading } = this.state; - - return ( - - ); - } - - renderReview() { - const { ReviewForm, environmentToggles } = this.state; - - return ( - - ); - } - - render() { - const { error, defaultStage, manifestStage, manifest, name } = this.state; - - if (error) { - return ; - } - - const { match, create } = this.props; - const stage = match.params.stage; - - if (!stage) { - return this.redirect({ stage: defaultStage }); - } - - if (!this.stages[stage]) { - return this.redirect({ stage: defaultStage }); - } - - if (create && stage !== 'name' && !name) { - return this.redirect({ stage: defaultStage }); - } - - if (stage === 'environment' && !manifest) { - return this.redirect({ stage: manifestStage }); - } - - return this.stages[stage](); - } -} - -export default compose( - graphql(PortalQuery, { - props: ({ data: { portal = {} } }) => ({ - dataCenter: get(portal, 'datacenter.region', ''), - tritonId: get(portal, 'user.tritonId', '') - }) - }), - graphql(DeploymentGroupCreateMutation, { - props: ({ mutate }) => ({ - createDeploymentGroup: variables => mutate({ variables }) - }) - }), - graphql(DeploymentGroupProvisionMutation, { - props: ({ mutate }) => ({ - provisionManifest: variables => mutate({ variables }) - }) - }) -)(withRouter(DeploymentGroupEditOrCreate)); \ No newline at end of file diff --git a/packages/cp-frontend/src/containers/manifest/index.js b/packages/cp-frontend/src/containers/manifest/index.js deleted file mode 100644 index 13106952..00000000 --- a/packages/cp-frontend/src/containers/manifest/index.js +++ /dev/null @@ -1,118 +0,0 @@ -import React from 'react'; -import { compose, graphql } from 'react-apollo'; -import get from 'lodash.get'; -import forceArray from 'force-array'; - -import ManifestQuery from '@graphql/Manifest.gql'; -import DeploymentGroupBySlugQuery from '@graphql/DeploymentGroupBySlug.gql'; - -import ManifestEditOrCreate from '@containers/manifest/edit-or-create'; -import { Progress } from '@components/manifest'; -import { LayoutContainer } from '@components/layout'; -import { Title } from '@components/navigation'; -import { Loader, ErrorMessage, WarningMessage } from '@components/messaging'; - -const Manifest = ({ - loading, - error, - manifest = '', - environment = '', - files = [], - deploymentGroup = null, - hasManifest = false, - match -}) => { - const stage = match.params.stage; - const _title = Edit Manifest; - - if ( - loading || - !deploymentGroup || - (!hasManifest && !deploymentGroup.imported) - ) { - return ( - - {_title} - - - ); - } - - if (error) { - return ( - - {_title} - - - ); - } - - const _notice = - deploymentGroup && deploymentGroup.imported && !manifest ? ( - - ) : null; - - return ( - - {_title} - - {_notice} - - - ); -}; - -export default compose( - graphql(ManifestQuery, { - options: props => ({ - fetchPolicy: 'network-only', - variables: { - deploymentGroupSlug: props.match.params.deploymentGroup - } - }), - props: ({ data: { deploymentGroup, loading, error } }) => ({ - files: get(deploymentGroup, 'version.manifest.files', []), - manifest: get(deploymentGroup, 'version.manifest.raw', ''), - environment: get(deploymentGroup, 'version.manifest.environment', ''), - hasManifest: Boolean(get(deploymentGroup, 'version.manifest')), - loading, - error - }) - }), - graphql(DeploymentGroupBySlugQuery, { - options: props => ({ - variables: { - slug: props.match.params.deploymentGroup - } - }), - props: ({ - data: { deploymentGroups, loading, error, startPolling, stopPolling } - }) => { - const dgs = forceArray(deploymentGroups); - - if (!dgs.length) { - startPolling(1000); - } else { - stopPolling(); - } - - return { - deploymentGroup: dgs[0], - loading, - error - }; - } - }) -)(Manifest); diff --git a/packages/cp-frontend/src/containers/metrics/index.js b/packages/cp-frontend/src/containers/metrics/index.js deleted file mode 100644 index 66ff90e0..00000000 --- a/packages/cp-frontend/src/containers/metrics/index.js +++ /dev/null @@ -1 +0,0 @@ -export * from './metrics-data-hoc'; diff --git a/packages/cp-frontend/src/containers/metrics/metrics-data-hoc.js b/packages/cp-frontend/src/containers/metrics/metrics-data-hoc.js deleted file mode 100644 index 8f9defdc..00000000 --- a/packages/cp-frontend/src/containers/metrics/metrics-data-hoc.js +++ /dev/null @@ -1,160 +0,0 @@ -import React, { Component } from 'react'; -import { graphql } from 'react-apollo'; -import find from 'lodash.find'; -import uniqBy from 'lodash.uniqby'; -import get from 'lodash.get'; -import moment from 'moment'; - -export const MetricNames = [ - 'AVG_MEM_BYTES', - 'AVG_LOAD_PERCENT', - 'AGG_NETWORK_BYTES' -]; - -export const withServiceMetricsPolling = ({ - pollingInterval = 1000, // In milliseconds - getPreviousEnd = () => - moment() - .utc() - .format() -}) => { - return WrappedComponent => { - return class extends Component { - componentDidMount() { - this._poll = setInterval(() => { - const { loading, fetchMoreMetrics } = this.props; - const previousEnd = getPreviousEnd(this.props); - - if (!loading && previousEnd) { - fetchMoreMetrics(previousEnd); - } - }, pollingInterval); // TODO this is the polling interval - think about amount is the todo I guess... - } - - componentWillUnmount() { - clearInterval(this._poll); - } - - render() { - return ; - } - }; - }; -}; - -export const withServiceMetricsGql = ({ - gqlQuery, - graphDurationSeconds, - updateIntervalSeconds, - variables = () => ({}), - props = () => ({}) -}) => { - const getPreviousMetrics = ( - previousResult, - serviceId, - instanceId, - metricName - ) => { - const services = get(previousResult, 'deploymentGroup.services', []); - - if (!services.length) { - return []; - } - - const service = find(services, ['id', serviceId]); - - if (!service) { - return []; - } - - const instance = find(service.instances, ['id', instanceId]); - - if (!instance) { - return []; - } - - const metrics = find(instance.metrics, ['name', metricName]); - - if (!metrics) { - return []; - } - - return get(metrics, 'metrics', []); - }; - - const getNextResult = (previousResult, fetchNextResult) => { - const deploymentGroup = fetchNextResult.deploymentGroup; - - return { - deploymentGroup: { - ...deploymentGroup, - services: deploymentGroup.services.map(service => ({ - ...service, - instances: service.instances.map(instance => ({ - ...instance, - metrics: instance.metrics.map(metric => ({ - ...metric, - metrics: uniqBy( - getPreviousMetrics( - previousResult, - service.id, - instance.id, - metric.name - ).concat(metric.metrics), - 'time' - ) - })) - })) - })) - } - }; - }; - - return graphql(gqlQuery, { - options(props) { - const params = props.match.params; - const deploymentGroupSlug = params.deploymentGroup; - - // This is potentially prone to overfetching if we already have data within timeframe and we leave the page then come back to it - const end = moment(); - const start = moment(end).subtract( - graphDurationSeconds + updateIntervalSeconds, - 'seconds' - ); // TODO initial amount of data we wanna get - should be the same as what we display + 15 secs - - return { - variables: { - deploymentGroupSlug, - metricNames: MetricNames, - start: start.utc().format(), - end: end.utc().format(), - ...variables(props) - } - }; - }, - props: ({ data: { variables, fetchMore, ...rest } }) => { - const fetchMoreMetrics = previousEnd => { - fetchMore({ - variables: { - ...variables, - start: previousEnd, - end: moment() - .utc() - .format() - }, - updateQuery: ( - previousResult, - { fetchMoreResult, queryVariables } - ) => { - return getNextResult(previousResult, fetchMoreResult); - } - }); - }; - - return { - fetchMoreMetrics, - ...props(rest) - }; - } - }); -}; \ No newline at end of file diff --git a/packages/cp-frontend/src/containers/navigation/breadcrumb.js b/packages/cp-frontend/src/containers/navigation/breadcrumb.js deleted file mode 100644 index 4f67b719..00000000 --- a/packages/cp-frontend/src/containers/navigation/breadcrumb.js +++ /dev/null @@ -1,65 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { connect } from 'react-redux'; -import { compose } from 'react-apollo'; -import { Breadcrumb as BreadcrumbComponent } from '@components/navigation'; -import withNotFound from './not-found-hoc'; -import { - deploymentGroupBySlugSelector, - serviceBySlugSelector -} from '@root/state/selectors'; - -export const Breadcrumb = ({ - deploymentGroup, - service, - location: { pathname } -}) => { - const path = pathname.split('/'); - - const links = [ - { - name: 'Dashboard', - pathname: '/' - } - ]; - - if (deploymentGroup) { - links.push({ - name: deploymentGroup.name, - pathname: path.slice(0, 3).join('/') - }); - } - - if (service) { - links.push({ - name: service.name, - pathname: path.slice(0, 5).join('/') - }); - } - - return ; -}; - -Breadcrumb.propTypes = { - deploymentGroup: PropTypes.object, - service: PropTypes.object, - location: PropTypes.object -}; - -const connectBreadcrumb = connect( - (state, ownProps) => { - const params = ownProps.match.params; - const deploymentGroupSlug = params.deploymentGroup; - const serviceSlug = params.service; - return { - deploymentGroup: deploymentGroupBySlugSelector(deploymentGroupSlug)( - state - ), - service: serviceBySlugSelector(serviceSlug)(state), - location: ownProps.location - }; - }, - dispatch => ({}) -); - -export default compose(connectBreadcrumb, withNotFound())(Breadcrumb); diff --git a/packages/cp-frontend/src/containers/navigation/header.js b/packages/cp-frontend/src/containers/navigation/header.js deleted file mode 100644 index dcc66e02..00000000 --- a/packages/cp-frontend/src/containers/navigation/header.js +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react'; -import { graphql } from 'react-apollo'; -import get from 'lodash.get'; - -import PortalQuery from '@graphql/Portal.gql'; -import { Header as HeaderComponent } from '@components/navigation'; - -export const Header = ({ datacenter, username }) => ( - -); - -const HeaderWithData = graphql(PortalQuery, { - props: ({ data: { portal = {} } }) => ({ - datacenter: get(portal, 'datacenter.region', ''), - username: get(portal, 'user.firstName', '') - }) -})(Header); - -export default HeaderWithData; diff --git a/packages/cp-frontend/src/containers/navigation/index.js b/packages/cp-frontend/src/containers/navigation/index.js deleted file mode 100644 index 0394e39b..00000000 --- a/packages/cp-frontend/src/containers/navigation/index.js +++ /dev/null @@ -1,4 +0,0 @@ -export { default as Header } from './header'; -export { default as Breadcrumb } from './breadcrumb'; -export { default as Menu } from './menu'; -export { default as withNotFound, GqlPaths } from './not-found-hoc'; diff --git a/packages/cp-frontend/src/containers/navigation/menu.js b/packages/cp-frontend/src/containers/navigation/menu.js deleted file mode 100644 index c816ca58..00000000 --- a/packages/cp-frontend/src/containers/navigation/menu.js +++ /dev/null @@ -1,42 +0,0 @@ -import React from 'react'; -import { connect } from 'react-redux'; -import { compose } from 'react-apollo'; -import withNotFound from './not-found-hoc'; -import { Menu as MenuComponent } from '@components/navigation'; - -export const Menu = ({ location, match, sections }) => { - if (!sections || !sections.length) { - return null; - } - - const sectionsWithPathnames = sections.map(section => { - return { - name: section.name, - pathname: `${match.url}/${section.pathname}` - }; - }); - return ; -}; - -const connectMenu = connect( - (state, ownProps) => { - const params = ownProps.match.params; - const deploymentGroupSlug = params.deploymentGroup; - const serviceSlug = params.service; - - if ((deploymentGroupSlug || '').match(/^~/)) { - return {}; - } - - const sections = serviceSlug - ? state.ui.sections.services - : deploymentGroupSlug ? state.ui.sections.deploymentGroups : null; - - return { - sections - }; - }, - dispatch => ({}) -); - -export default compose(connectMenu, withNotFound())(Menu); diff --git a/packages/cp-frontend/src/containers/navigation/not-found-hoc.js b/packages/cp-frontend/src/containers/navigation/not-found-hoc.js deleted file mode 100644 index 2db52b37..00000000 --- a/packages/cp-frontend/src/containers/navigation/not-found-hoc.js +++ /dev/null @@ -1,69 +0,0 @@ -import React, { Component } from 'react'; -import { NotFound } from '@components/navigation'; - -export const GqlPaths = { - DEPLOYMENT_GROUP: 'deploymentGroup', - SERVICES: 'services' -}; - -export default paths => { - return WrappedComponent => { - return class extends Component { - componentWillReceiveProps(nextProps) { - if (paths) { - const { error, location, history } = nextProps; - - if ( - error && - (!location.state || !location.state.notFound) && - (error.graphQLErrors && error.graphQLErrors.length) - ) { - const graphQLError = error.graphQLErrors[0]; - if (graphQLError.message === 'Not Found') { - const notFound = graphQLError.path.pop(); - if (paths.indexOf(notFound) > -1) { - history.replace(location.pathname, { notFound }); - } - } - } - } - } - - render() { - const { location, match } = this.props; - - if (location.state && location.state.notFound) { - const notFound = location.state.notFound; - if (paths && paths.indexOf(notFound) > -1) { - let title; - let to; - let link; - if (notFound === 'services' || notFound === 'service') { - title = 'This service doesn’t exist'; - to = match.url - .split('/') - .slice(0, 3) - .join('/'); - link = 'Back to services'; - } else if (notFound === 'deploymentGroup') { - title = 'This deployment group doesn’t exist'; - to = '/deployment-group'; - link = 'Back to dashboard'; - } - return ( - - ); - } - return null; - } - - return ; - } - }; - }; -}; \ No newline at end of file diff --git a/packages/cp-frontend/src/containers/service/delete.js b/packages/cp-frontend/src/containers/service/delete.js deleted file mode 100644 index 3fc932df..00000000 --- a/packages/cp-frontend/src/containers/service/delete.js +++ /dev/null @@ -1,107 +0,0 @@ -import React, { Component } from 'react'; -import PropTypes from 'prop-types'; -import { compose, graphql } from 'react-apollo'; -import ServicesDeleteMutation from '@graphql/ServicesDeleteMutation.gql'; -import { Loader, ModalErrorMessage } from '@components/messaging'; -import { ServiceDelete as ServiceDeleteComponent } from '@components/service'; -import { Modal } from 'joyent-ui-toolkit'; -import ServiceGql from './service-gql'; -import { withNotFound, GqlPaths } from '@containers/navigation'; - -export class ServiceDelete extends Component { - constructor(props) { - super(props); - - this.state = { - error: null - }; - } - - render() { - const { loading, error, match, history } = this.props; - - const handleCloseClick = evt => { - const closeUrl = match.url - .split('/') - .slice(0, -2) - .join('/'); - history.replace(closeUrl); - }; - - if (loading) { - return ( - - - - ); - } - - if (error) { - return ( - - - - ); - } - - const { service, deleteServices } = this.props; - - if (this.state.error) { - return ( - - - - ); - } - - const handleConfirmClick = evt => { - deleteServices(service.id) - .then(() => handleCloseClick()) - .catch(err => { - this.setState({ error: err }); - }); - }; - - return ( - - - - ); - } -} - -ServiceDelete.propTypes = { - service: PropTypes.object, - loading: PropTypes.bool, - error: PropTypes.bool, - match: PropTypes.object, - history: PropTypes.object, - deleteServices: PropTypes.func.isRequired -}; - -const DeleteServicesGql = graphql(ServicesDeleteMutation, { - props: ({ mutate }) => ({ - deleteServices: serviceId => - mutate({ - variables: { ids: [serviceId] } - }) - }) -}); - -export default compose( - DeleteServicesGql, - ServiceGql, - withNotFound([GqlPaths.SERVICES]) -)(ServiceDelete); diff --git a/packages/cp-frontend/src/containers/service/index.js b/packages/cp-frontend/src/containers/service/index.js deleted file mode 100644 index 030c1f8f..00000000 --- a/packages/cp-frontend/src/containers/service/index.js +++ /dev/null @@ -1,3 +0,0 @@ -export { default as ServiceScale } from './scale'; -export { default as ServiceDelete } from './delete'; -export { default as ServiceMetrics } from './metrics'; diff --git a/packages/cp-frontend/src/containers/service/metrics.js b/packages/cp-frontend/src/containers/service/metrics.js deleted file mode 100644 index 3254371d..00000000 --- a/packages/cp-frontend/src/containers/service/metrics.js +++ /dev/null @@ -1,87 +0,0 @@ -import React from 'react'; -import { compose } from 'react-apollo'; -import moment from 'moment'; -import ServiceMetricsQuery from '@graphql/ServiceMetrics.gql'; -import { withNotFound, GqlPaths } from '@containers/navigation'; -import { LayoutContainer } from '@components/layout'; -import { Title } from '@components/navigation'; -import { ServiceMetrics as ServiceMetricsComponent } from '@components/service'; -import { Loader, ErrorMessage } from '@components/messaging'; -import { processInstancesMetrics } from '@state/selectors'; -import get from 'lodash.get'; - -import { - withServiceMetricsPolling, - withServiceMetricsGql -} from '@containers/metrics'; - -// 'width' of graph, i.e. total duration of time it'll display and truncate data to -// amount of data we'll need to initially fetch -const GraphDurationSeconds = 90; - -const ServiceMetrics = ({ service, loading, error }) => { - const _title = Metrics; - - if (loading || !service) { - return ( - - {_title} - - - ); - } - - if (error) { - return ( - - {_title} - - - ); - } - - return ( - - {_title} - - - ); -}; - -export default compose( - withServiceMetricsGql({ - gqlQuery: ServiceMetricsQuery, - graphDurationSeconds: GraphDurationSeconds, - updateIntervalSeconds: 15, - variables: ({ match }) => ({ serviceSlug: match.params.service }), - props: ({ deploymentGroup, loading, error }) => ({ - deploymentGroup, - service: get(deploymentGroup || {}, 'services', [])[0], - loading, - error - }) - }), - withServiceMetricsPolling({ - pollingInterval: 1000, - getPreviousEnd: ({ loading, error, service = [] }) => { - if (loading) { - return false; - } - - return get( - service, - 'instances[0].metrics[0].end', - moment() - .utc() - .format() - ); - } - }), - withNotFound([GqlPaths.DEPLOYMENT_GROUP, GqlPaths.SERVICES]) -)(ServiceMetrics); \ No newline at end of file diff --git a/packages/cp-frontend/src/containers/service/scale.js b/packages/cp-frontend/src/containers/service/scale.js deleted file mode 100644 index 08ce9312..00000000 --- a/packages/cp-frontend/src/containers/service/scale.js +++ /dev/null @@ -1,135 +0,0 @@ -import React, { Component } from 'react'; -import PropTypes from 'prop-types'; -import { compose, graphql } from 'react-apollo'; -import { reduxForm } from 'redux-form'; -import ServiceScaleMutation from '@graphql/ServiceScale.gql'; -import { Loader, ModalErrorMessage } from '@components/messaging'; -import { ServiceScale as ServiceScaleComponent } from '@components/service'; -import { Modal } from 'joyent-ui-toolkit'; -import ServiceGql from './service-gql'; -import { withNotFound, GqlPaths } from '@containers/navigation'; - -export class ServiceScale extends Component { - constructor(props) { - super(props); - - this.state = { - error: null - }; - } - - render() { - const { loading, error, match, history } = this.props; - - const handleCloseClick = evt => { - const closeUrl = match.url - .split('/') - .slice(0, -2) - .join('/'); - history.replace(closeUrl); - }; - - if (loading) { - return ( - - - - ); - } - - if (error) { - return ( - - - - ); - } - - const { service, scale } = this.props; - - if (this.state.error) { - return ( - - - - ); - } - - const validateReplicas = ({ replicas }) => { - if (replicas === '') { - return { - replicas: - 'Please enter the number of instances you would like to scale to.' - }; - } - }; - - const handleSubmitClick = values => { - scale(service.id, values.replicas) - .then(handleCloseClick) - .catch(err => { - this.setState({ error: err }); - }); - }; - - if (!service) { - setTimeout(handleCloseClick, 33); - return null; - } - - const ServiceScaleForm = reduxForm({ - form: 'scale-service', - destroyOnUnmount: true, - forceUnregisterOnUnmount: true, - validate: validateReplicas, - initialValues: { - replicas: service.instances.length - } - })(ServiceScaleComponent); - - return ( - - - - ); - } -} - -ServiceScale.propTypes = { - service: PropTypes.object, - loading: PropTypes.bool, - error: PropTypes.bool, - match: PropTypes.object, - history: PropTypes.object, - scale: PropTypes.func.isRequired -}; - -const ServiceScaleGql = graphql(ServiceScaleMutation, { - props: ({ mutate }) => ({ - scale: (serviceId, replicas) => - mutate({ - variables: { - serviceId, - replicas - } - }) - }) -}); - -export default compose( - ServiceScaleGql, - ServiceGql, - withNotFound([GqlPaths.SERVICES]) -)(ServiceScale); diff --git a/packages/cp-frontend/src/containers/service/service-gql.js b/packages/cp-frontend/src/containers/service/service-gql.js deleted file mode 100644 index 3c995bed..00000000 --- a/packages/cp-frontend/src/containers/service/service-gql.js +++ /dev/null @@ -1,26 +0,0 @@ -import { graphql } from 'react-apollo'; -import InstancesQuery from '@graphql/Instances.gql'; - -export default graphql(InstancesQuery, { - options(props) { - const params = props.match.params; - const deploymentGroupSlug = params.deploymentGroup; - const serviceSlug = params.service; - return { - variables: { - deploymentGroupSlug, - serviceSlug - } - }; - }, - props: ({ data: { deploymentGroup, loading, error } }) => ({ - service: - deploymentGroup && - deploymentGroup.services && - deploymentGroup.services.length - ? deploymentGroup.services[0] - : null, - loading, - error - }) -}); diff --git a/packages/cp-frontend/src/containers/services/index.js b/packages/cp-frontend/src/containers/services/index.js deleted file mode 100644 index d18914cf..00000000 --- a/packages/cp-frontend/src/containers/services/index.js +++ /dev/null @@ -1,4 +0,0 @@ -export { default as ServiceList } from './list'; -export { default as ServicesTopology } from './topology'; -export { default as ServicesMenu } from './menu'; -export { default as ServicesQuickActions } from './quick-actions'; diff --git a/packages/cp-frontend/src/containers/services/list.js b/packages/cp-frontend/src/containers/services/list.js deleted file mode 100644 index 20ff2a45..00000000 --- a/packages/cp-frontend/src/containers/services/list.js +++ /dev/null @@ -1,202 +0,0 @@ -import React, { Component } from 'react'; -import PropTypes from 'prop-types'; -import { compose } from 'react-apollo'; -import { connect } from 'react-redux'; -import styled from 'styled-components'; -import forceArray from 'force-array'; -import sortBy from 'lodash.sortby'; -import get from 'lodash.get'; -import moment from 'moment'; - -import ServicesQuery from '@graphql/Services.gql'; -import { toggleServicesQuickActions } from '@root/state/actions'; -import { withNotFound, GqlPaths } from '@containers/navigation'; -import { LayoutContainer } from '@components/layout'; -import { Loader, ErrorMessage } from '@components/messaging'; -import { ServiceListItem } from '@components/services'; - -import { - withServiceMetricsPolling, - withServiceMetricsGql -} from '@containers/metrics'; - -import { - processServices, - processInstancesMetrics -} from '@root/state/selectors'; - -// 'width' of graph, i.e. total duration of time it'll display and truncate data to -// amount of data we'll need to initially fetch -const GraphDurationSeconds = 90; - -const StyledContainer = styled.div` - position: relative; -`; - -export class ServiceList extends Component { - constructor(props) { - super(props); - - this.state = { - errors: {} - }; - } - - render() { - const { - deploymentGroup, - services, - loading, - error, - toggleServicesQuickActions - } = this.props; - - if (loading && !forceArray(services).length) { - return ( - - - - ); - } - - const _err = error ? ( - - ) : null; - - if ( - deploymentGroup && - deploymentGroup.status === 'PROVISIONING' && - !forceArray(services).length - ) { - return ( - - - - ); - } - - const handleQuickActionsClick = (evt, service) => { - const button = evt.currentTarget; - const buttonRect = button.getBoundingClientRect(); - - const position = { - left: `${buttonRect.left + - window.scrollX + - (buttonRect.right - buttonRect.left) / 2}px`, - top: `${buttonRect.bottom + window.scrollY}px` - }; - - toggleServicesQuickActions({ - service, - position - }); - }; - - let renderedError = null; - - if ( - this.state.errors.stop || - this.state.errors.start || - this.state.errors.restart - ) { - const message = this.state.errors.stop - ? 'An error occurred while attempting to stop your service.' - : this.state.errors.start - ? 'An error occurred while attempting to start your service.' - : this.state.errors.restart - ? 'An error occurred while attempting to restart your service.' - : ''; - - renderedError = ; - } - - const serviceList = sortBy(services, ['slug']) - .map(service => - Object.assign(service, { - metrics: !service.children - ? processInstancesMetrics(service.instances) - : null, - children: service.children - ? service.children.map(children => - Object.assign(children, { - metrics: processInstancesMetrics(children.instances) - }) - ) - : null - }) - ) - .map(service => ( - - )); - - return ( - - {renderedError} - {_err} - {serviceList} - - ); - } -} - -ServiceList.propTypes = { - deploymentGroup: PropTypes.object, - services: PropTypes.array, - loading: PropTypes.bool, - error: PropTypes.bool, - toggleServicesQuickActions: PropTypes.func -}; - -const mapStateToProps = (state, ownProps) => ({}); - -const mapDispatchToProps = dispatch => ({ - toggleServicesQuickActions: data => dispatch(toggleServicesQuickActions(data)) -}); - -const UiConnect = connect(mapStateToProps, mapDispatchToProps); - -export default compose( - withServiceMetricsGql({ - gqlQuery: ServicesQuery, - graphDurationSeconds: GraphDurationSeconds, - updateIntervalSeconds: 15, - props: ({ deploymentGroup, loading, error }) => ({ - deploymentGroup, - services: deploymentGroup - ? processServices(deploymentGroup.services, null) - : null, - loading, - error - }) - }), - withServiceMetricsPolling({ - pollingInterval: 1000, - getPreviousEnd: ({ loading, services = [] }) => { - if (loading) { - return false; - } - - const previousEnd = forceArray(services) - .map(service => get(service, 'instances[0].metrics[0].end', null)) - .filter(Boolean) - .shift(); - - return ( - previousEnd || - moment() - .utc() - .format() - ); - } - }), - UiConnect, - withNotFound([GqlPaths.DEPLOYMENT_GROUP]) -)(ServiceList); diff --git a/packages/cp-frontend/src/containers/services/menu.js b/packages/cp-frontend/src/containers/services/menu.js deleted file mode 100644 index 3c4bc255..00000000 --- a/packages/cp-frontend/src/containers/services/menu.js +++ /dev/null @@ -1,63 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { compose } from 'react-apollo'; -import { Col, Row } from 'react-styled-flexboxgrid'; -import remcalc from 'remcalc'; -import unitcalc from 'unitcalc'; -import { LayoutContainer } from '@components/layout'; -import { Title } from '@components/navigation'; -import { withNotFound } from '@containers/navigation'; - -import { FormGroup, Toggle, ToggleList, Legend } from 'joyent-ui-toolkit'; - -const StyledLegend = Legend.extend` - float: left; - padding-top: ${unitcalc(2)}; - margin-right: ${unitcalc(1.5)}; -`; - -const PaddedRow = Row.extend` - margin-bottom: ${remcalc(18)} -`; - - -export const ServicesMenu = ({ location: { pathname }, history: { push } }) => { - const toggleValue = pathname.split('-').pop(); - - const handleToggle = evt => { - const value = evt.target.value; - if (value !== toggleValue) { - const index = pathname.lastIndexOf('-'); - const path = `${pathname.slice(0, index)}-${value}`; - push(path); - } - }; - - return ( - - Services - - - - View - - - List - - - Topology - - - - - - - ); -}; - -ServicesMenu.propTypes = { - location: PropTypes.object.isRequired, - history: PropTypes.object.isRequired -}; - -export default compose(withNotFound())(ServicesMenu); diff --git a/packages/cp-frontend/src/containers/services/quick-actions.js b/packages/cp-frontend/src/containers/services/quick-actions.js deleted file mode 100644 index 02b88f67..00000000 --- a/packages/cp-frontend/src/containers/services/quick-actions.js +++ /dev/null @@ -1,170 +0,0 @@ -import React, { Component } from 'react'; -import { connect } from 'react-redux'; -import { compose, graphql } from 'react-apollo'; -import styled from 'styled-components'; -import ServicesRestartMutation from '@graphql/ServicesRestartMutation.gql'; -import ServicesStopMutation from '@graphql/ServicesStopMutation.gql'; -import ServicesStartMutation from '@graphql/ServicesStartMutation.gql'; -import { toggleServicesQuickActions } from '@root/state/actions'; -import { ServicesQuickActions as QuickActions } from '@components/services'; -import { ErrorMessage } from '@components/messaging'; -import { LayoutContainer } from '@components/layout'; - -const StyledContainer = styled.div` - position: absolute; - top: 0; - left: 0; -`; - -export class ServicesQuickActions extends Component { - constructor(props) { - super(props); - - this.state = { - errors: {} - }; - } - - render() { - const { - servicesQuickActions, - toggleServicesQuickActions, - restartServices, - stopServices, - startServices, - url, - push - } = this.props; - - let errorMessage = null; - let quickActions = null; - - if ( - this.state.errors.stop || - this.state.errors.start || - this.state.errors.restart - ) { - const message = this.state.errors.stop - ? 'An error occurred while attempting to stop your service.' - : this.state.errors.start - ? 'An error occurred while attempting to start your service.' - : this.state.errors.restart - ? 'An error occurred while attempting to restart your service.' - : ''; - - errorMessage = ( - - - - ); - } - - if (servicesQuickActions.show) { - const handleTooltipBlur = evt => { - toggleServicesQuickActions({ show: false }); - }; - - const handleRestartClick = (evt, service) => { - this.setState({ errors: {} }); - toggleServicesQuickActions({ show: false }); - restartServices(service.id).catch(err => { - this.setState({ errors: { restart: err } }); - }); - }; - - const handleStopClick = (evt, service) => { - this.setState({ errors: {} }); - toggleServicesQuickActions({ show: false }); - stopServices(service.id).catch(err => { - this.setState({ errors: { stop: err } }); - }); - }; - - const handleStartClick = (evt, service) => { - this.setState({ errors: {} }); - toggleServicesQuickActions({ show: false }); - startServices(service.id).catch(err => { - this.setState({ errors: { start: err } }); - }); - }; - - const handleScaleClick = (evt, service) => { - this.setState({ errors: {} }); - toggleServicesQuickActions({ show: false }); - push(`${url}/${service.slug}/scale`); - }; - - const handleDeleteClick = (evt, service) => { - this.setState({ errors: {} }); - toggleServicesQuickActions({ show: false }); - push(`${url}/${service.slug}/delete`); - }; - - quickActions = ( - - - - ); - } - - if (quickActions || errorMessage) { - return ( -
    - {errorMessage} - {quickActions} -
    - ); - } - - return null; - } -} - -const mapStateToProps = (state, ownProps) => ({ - servicesQuickActions: state.ui.services.quickActions, - url: ownProps.match.url.replace(/\/$/, ''), - push: ownProps.history.push -}); - -const mapDispatchToProps = dispatch => ({ - toggleServicesQuickActions: data => dispatch(toggleServicesQuickActions(data)) -}); - -const UiConnect = connect(mapStateToProps, mapDispatchToProps); - -const ServicesRestartGql = graphql(ServicesRestartMutation, { - props: ({ mutate }) => ({ - restartServices: serviceId => mutate({ variables: { ids: [serviceId] } }) - }) -}); - -const ServicesStopGql = graphql(ServicesStopMutation, { - props: ({ mutate }) => ({ - stopServices: serviceId => mutate({ variables: { ids: [serviceId] } }) - }) -}); - -const ServicesStartGql = graphql(ServicesStartMutation, { - props: ({ mutate }) => ({ - startServices: serviceId => mutate({ variables: { ids: [serviceId] } }) - }) -}); - -const ConnectedServicesQuickActions = compose( - ServicesRestartGql, - ServicesStopGql, - ServicesStartGql, - UiConnect -)(ServicesQuickActions); - -export default ConnectedServicesQuickActions; diff --git a/packages/cp-frontend/src/containers/services/topology.js b/packages/cp-frontend/src/containers/services/topology.js deleted file mode 100644 index a1aae29c..00000000 --- a/packages/cp-frontend/src/containers/services/topology.js +++ /dev/null @@ -1,188 +0,0 @@ -import React, { Component } from 'react'; -import { compose, graphql } from 'react-apollo'; -import { connect } from 'react-redux'; -import styled from 'styled-components'; -import forceArray from 'force-array'; -import unitcalc from 'unitcalc'; - -import ServicesQuery from '@graphql/ServicesTopology.gql'; -import { processServicesForTopology } from '@root/state/selectors'; -import { toggleServicesQuickActions } from '@root/state/actions'; -import { withNotFound, GqlPaths } from '@containers/navigation'; -import { LayoutContainer } from '@components/layout'; -import { Loader, ErrorMessage } from '@components/messaging'; -import { Topology } from 'joyent-ui-toolkit'; - -const StyledBackground = styled.div` - padding: ${unitcalc(4)}; - background-color: ${props => props.theme.whiteActive}; -`; - -const StyledContainer = styled.div` - position: relative; -`; - -export class ServicesTopology extends Component { - constructor(props) { - super(props); - - this.state = { - errors: {} - }; - } - - ref(name) { - this._refs = this._refs || {}; - - return el => { - this._refs[name] = el; - }; - } - - render() { - const { - url, - push, - deploymentGroup, - services, - loading, - error, - toggleServicesQuickActions - } = this.props; - - if (loading && !forceArray(services).length) { - return ( - - - - ); - } - - if (error) { - return ( - - - - ); - } - - if ( - deploymentGroup && - deploymentGroup.status === 'PROVISIONING' && - !forceArray(services).length - ) { - return ( - - - - ); - } - - const handleQuickActionsClick = (evt, tooltipData) => { - const container = this._refs.container; - const containerRect = container.getBoundingClientRect(); - const position = { - top: `${containerRect.top + - window.scrollY + - tooltipData.position.top}px`, - left: `${containerRect.left + - window.scrollX + - tooltipData.position.left}px` - }; - const data = { - ...tooltipData, - position - }; - toggleServicesQuickActions(data); - }; - - const handleNodeTitleClick = (evt, { service }) => { - push( - `${url - .split('/') - .slice(0, 3) - .join('/')}/services/${service.slug}` - ); - }; - - let renderedError = null; - - if ( - this.state.errors.stop || - this.state.errors.start || - this.state.errors.restart - ) { - const message = this.state.errors.stop - ? 'An error occurred while attempting to stop your service.' - : this.state.errors.start - ? 'An error occurred while attempting to start your service.' - : this.state.errors.restart - ? 'An error occurred while attempting to restart your service.' - : ''; - - renderedError = ( - - - - ); - } - - return ( -
    - {renderedError} - - -
    - -
    -
    -
    -
    - ); - } -} - -const mapStateToProps = (state, ownProps) => ({ - url: ownProps.match.url.replace(/\/$/, ''), - push: ownProps.history.push -}); - -const mapDispatchToProps = dispatch => ({ - toggleServicesQuickActions: data => dispatch(toggleServicesQuickActions(data)) -}); - -const UiConnect = connect(mapStateToProps, mapDispatchToProps); - -const ServicesGql = graphql(ServicesQuery, { - options(props) { - return { - pollInterval: 1000, - variables: { - deploymentGroupSlug: props.match.params.deploymentGroup - } - }; - }, - props: ({ data: { deploymentGroup = {}, loading, error } }) => ({ - deploymentGroup, - services: deploymentGroup - ? processServicesForTopology(deploymentGroup.services) - : null, - loading, - error - }) -}); - -const ServicesTopologyWithData = compose( - ServicesGql, - UiConnect, - withNotFound([GqlPaths.DEPLOYMENT_GROUP]) -)(ServicesTopology); - -export default ServicesTopologyWithData; \ No newline at end of file diff --git a/packages/cp-frontend/src/graphql/DeploymentGroup.gql b/packages/cp-frontend/src/graphql/DeploymentGroup.gql deleted file mode 100644 index ac896c7e..00000000 --- a/packages/cp-frontend/src/graphql/DeploymentGroup.gql +++ /dev/null @@ -1,7 +0,0 @@ -#import "./DeploymentGroupInfo.gql" - -query DeploymentGroup($deploymentGroupSlug: String!) { - deploymentGroup(slug: $deploymentGroupSlug) { - ...DeploymentGroupInfo - } -} diff --git a/packages/cp-frontend/src/graphql/DeploymentGroupBySlug.gql b/packages/cp-frontend/src/graphql/DeploymentGroupBySlug.gql deleted file mode 100644 index 3692c2c6..00000000 --- a/packages/cp-frontend/src/graphql/DeploymentGroupBySlug.gql +++ /dev/null @@ -1,7 +0,0 @@ -#import "./DeploymentGroupInfo.gql" - -query DeploymentGroupBySlug($slug: String!) { - deploymentGroups(slug: $slug) { - ...DeploymentGroupInfo - } -} diff --git a/packages/cp-frontend/src/graphql/DeploymentGroupConfig.gql b/packages/cp-frontend/src/graphql/DeploymentGroupConfig.gql deleted file mode 100644 index 5488cd2a..00000000 --- a/packages/cp-frontend/src/graphql/DeploymentGroupConfig.gql +++ /dev/null @@ -1,36 +0,0 @@ -#import "./ServiceInfo.gql" - -query config( - $deploymentGroupName: String! - $type: ManifestType! - $format: ManifestFormat! - $environment: String! - $files: [KeyValueInput]! - $raw: String! -) { - config( - deploymentGroupName: $deploymentGroupName - type: $type - format: $format - environment: $environment - files: $files - raw: $raw - ) { - ...ServiceInfo - config { - id - image - ports - environment { - id - name - value - } - labels { - id - name - value - } - } - } -} diff --git a/packages/cp-frontend/src/graphql/DeploymentGroupCreate.gql b/packages/cp-frontend/src/graphql/DeploymentGroupCreate.gql deleted file mode 100644 index d984fccd..00000000 --- a/packages/cp-frontend/src/graphql/DeploymentGroupCreate.gql +++ /dev/null @@ -1,7 +0,0 @@ -#import "./DeploymentGroupInfo.gql" - -mutation createDeploymentGroup($name: String!) { - createDeploymentGroup(name: $name) { - ...DeploymentGroupInfo - } -} diff --git a/packages/cp-frontend/src/graphql/DeploymentGroupDeleteMutation.gql b/packages/cp-frontend/src/graphql/DeploymentGroupDeleteMutation.gql deleted file mode 100644 index 83d228c9..00000000 --- a/packages/cp-frontend/src/graphql/DeploymentGroupDeleteMutation.gql +++ /dev/null @@ -1,7 +0,0 @@ -#import "./DeploymentGroupInfo.gql" - -mutation DeleteDeploymentGroup($id: ID!) { - deleteDeploymentGroup(id: $id) { - ...DeploymentGroupInfo - } -} diff --git a/packages/cp-frontend/src/graphql/DeploymentGroupImport.gql b/packages/cp-frontend/src/graphql/DeploymentGroupImport.gql deleted file mode 100644 index 677aaf67..00000000 --- a/packages/cp-frontend/src/graphql/DeploymentGroupImport.gql +++ /dev/null @@ -1,7 +0,0 @@ -#import "./DeploymentGroupInfo.gql" - -mutation importDeploymentGroup($slug: String!) { - importDeploymentGroup(deploymentGroupSlug: $slug) { - ...DeploymentGroupInfo - } -} diff --git a/packages/cp-frontend/src/graphql/DeploymentGroupInfo.gql b/packages/cp-frontend/src/graphql/DeploymentGroupInfo.gql deleted file mode 100644 index 7a94c0bb..00000000 --- a/packages/cp-frontend/src/graphql/DeploymentGroupInfo.gql +++ /dev/null @@ -1,7 +0,0 @@ -fragment DeploymentGroupInfo on DeploymentGroup { - id - name - slug - imported - status -} diff --git a/packages/cp-frontend/src/graphql/DeploymentGroupProvision.gql b/packages/cp-frontend/src/graphql/DeploymentGroupProvision.gql deleted file mode 100644 index f7da47d1..00000000 --- a/packages/cp-frontend/src/graphql/DeploymentGroupProvision.gql +++ /dev/null @@ -1,27 +0,0 @@ -mutation provisionManifest( - $deploymentGroupId: ID! - $type: ManifestType! - $format: ManifestFormat! - $environment: String! - $files: [KeyValueInput]! - $raw: String! -) { - provisionManifest( - deploymentGroupId: $deploymentGroupId - type: $type - format: $format - environment: $environment - files: $files - raw: $raw - ) { - scale { - serviceName - replicas - } - plan { - type - service - machines - } - } -} diff --git a/packages/cp-frontend/src/graphql/DeploymentGroups.gql b/packages/cp-frontend/src/graphql/DeploymentGroups.gql deleted file mode 100644 index 5b02e15d..00000000 --- a/packages/cp-frontend/src/graphql/DeploymentGroups.gql +++ /dev/null @@ -1,7 +0,0 @@ -#import "./DeploymentGroupInfo.gql" - -query DeploymentGroups { - deploymentGroups { - ...DeploymentGroupInfo - } -} diff --git a/packages/cp-frontend/src/graphql/DeploymentGroupsImportable.gql b/packages/cp-frontend/src/graphql/DeploymentGroupsImportable.gql deleted file mode 100644 index 1a32e12c..00000000 --- a/packages/cp-frontend/src/graphql/DeploymentGroupsImportable.gql +++ /dev/null @@ -1,7 +0,0 @@ -#import "./DeploymentGroupInfo.gql" - -query DeploymentGroupsImportable { - importableDeploymentGroups { - ...DeploymentGroupInfo - } -} diff --git a/packages/cp-frontend/src/graphql/Instances.gql b/packages/cp-frontend/src/graphql/Instances.gql deleted file mode 100644 index 4b03dd5b..00000000 --- a/packages/cp-frontend/src/graphql/Instances.gql +++ /dev/null @@ -1,17 +0,0 @@ -#import "./DeploymentGroupInfo.gql" -#import "./ServiceInfo.gql" - -query Instances($deploymentGroupSlug: String!, $serviceSlug: String) { - deploymentGroup(slug: $deploymentGroupSlug) { - ...DeploymentGroupInfo - services(slug: $serviceSlug) { - ...ServiceInfo - instances { - id - name - status - healthy - } - } - } -} diff --git a/packages/cp-frontend/src/graphql/Manifest.gql b/packages/cp-frontend/src/graphql/Manifest.gql deleted file mode 100644 index f726b0a9..00000000 --- a/packages/cp-frontend/src/graphql/Manifest.gql +++ /dev/null @@ -1,18 +0,0 @@ -query ManifestById($deploymentGroupSlug: String!) { - deploymentGroup(slug: $deploymentGroupSlug) { - version { - manifest { - id - type - environment - files { - id - name - value - } - format - raw - } - } - } -} diff --git a/packages/cp-frontend/src/graphql/Portal.gql b/packages/cp-frontend/src/graphql/Portal.gql deleted file mode 100644 index f734864a..00000000 --- a/packages/cp-frontend/src/graphql/Portal.gql +++ /dev/null @@ -1,12 +0,0 @@ -query Portal { - portal { - user { - firstName - tritonId - } - datacenter { - id - region - } - } -} diff --git a/packages/cp-frontend/src/graphql/ServiceInfo.gql b/packages/cp-frontend/src/graphql/ServiceInfo.gql deleted file mode 100644 index 471adcfc..00000000 --- a/packages/cp-frontend/src/graphql/ServiceInfo.gql +++ /dev/null @@ -1,6 +0,0 @@ -fragment ServiceInfo on Service { - id - name - slug - status -} diff --git a/packages/cp-frontend/src/graphql/ServiceMetrics.gql b/packages/cp-frontend/src/graphql/ServiceMetrics.gql deleted file mode 100644 index c54f47e0..00000000 --- a/packages/cp-frontend/src/graphql/ServiceMetrics.gql +++ /dev/null @@ -1,32 +0,0 @@ -query Instances( - $deploymentGroupSlug: String! - $serviceSlug: String! - $metricNames: [MetricName]! - $start: String! - $end: String! -) { - deploymentGroup(slug: $deploymentGroupSlug) { - id - name - slug - services(slug: $serviceSlug) { - id - name - slug - instances { - id - name - metrics(names: $metricNames, start: $start, end: $end) { - instance - name - start - end - metrics { - time - value - } - } - } - } - } -} diff --git a/packages/cp-frontend/src/graphql/ServiceScale.gql b/packages/cp-frontend/src/graphql/ServiceScale.gql deleted file mode 100644 index 4ba4953d..00000000 --- a/packages/cp-frontend/src/graphql/ServiceScale.gql +++ /dev/null @@ -1,8 +0,0 @@ -mutation scale($serviceId: ID!, $replicas: Int!) { - scale(serviceId: $serviceId, replicas: $replicas) { - scale { - serviceName - replicas - } - } -} diff --git a/packages/cp-frontend/src/graphql/Services.gql b/packages/cp-frontend/src/graphql/Services.gql deleted file mode 100644 index 00a32133..00000000 --- a/packages/cp-frontend/src/graphql/Services.gql +++ /dev/null @@ -1,52 +0,0 @@ -#import "./DeploymentGroupInfo.gql" -#import "./ServiceInfo.gql" - -query Services( - $deploymentGroupSlug: String! - $metricNames: [MetricName]! - $start: String! - $end: String! -) { - deploymentGroup(slug: $deploymentGroupSlug) { - ...DeploymentGroupInfo - services { - ...ServiceInfo - branches { - id - name - slug - instances { - id - status - healthy - metrics(names: $metricNames, start: $start, end: $end) { - instance - name - start - end - metrics { - time - value - } - } - } - } - connections - instances { - id - status - healthy - metrics(names: $metricNames, start: $start, end: $end) { - instance - name - start - end - metrics { - time - value - } - } - } - } - } -} diff --git a/packages/cp-frontend/src/graphql/ServicesDeleteMutation.gql b/packages/cp-frontend/src/graphql/ServicesDeleteMutation.gql deleted file mode 100644 index ab4bb2c7..00000000 --- a/packages/cp-frontend/src/graphql/ServicesDeleteMutation.gql +++ /dev/null @@ -1,12 +0,0 @@ -#import "./ServiceInfo.gql" - -mutation DeleteServices($ids: [ID]!) { - deleteServices(ids: $ids) { - ...ServiceInfo - instances { - id - status - healthy - } - } -} diff --git a/packages/cp-frontend/src/graphql/ServicesRestartMutation.gql b/packages/cp-frontend/src/graphql/ServicesRestartMutation.gql deleted file mode 100644 index f47e2c8d..00000000 --- a/packages/cp-frontend/src/graphql/ServicesRestartMutation.gql +++ /dev/null @@ -1,7 +0,0 @@ -#import "./ServiceInfo.gql" - -mutation RestartServices($ids: [ID]!) { - restartServices(ids: $ids) { - ...ServiceInfo - } -} diff --git a/packages/cp-frontend/src/graphql/ServicesStartMutation.gql b/packages/cp-frontend/src/graphql/ServicesStartMutation.gql deleted file mode 100644 index 1354a530..00000000 --- a/packages/cp-frontend/src/graphql/ServicesStartMutation.gql +++ /dev/null @@ -1,12 +0,0 @@ -#import "./ServiceInfo.gql" - -mutation StartServices($ids: [ID]!) { - startServices(ids: $ids) { - ...ServiceInfo - instances { - id - status - healthy - } - } -} diff --git a/packages/cp-frontend/src/graphql/ServicesStopMutation.gql b/packages/cp-frontend/src/graphql/ServicesStopMutation.gql deleted file mode 100644 index ab00ad7b..00000000 --- a/packages/cp-frontend/src/graphql/ServicesStopMutation.gql +++ /dev/null @@ -1,12 +0,0 @@ -#import "./ServiceInfo.gql" - -mutation StopServices($ids: [ID]!) { - stopServices(ids: $ids) { - ...ServiceInfo - instances { - id - status - healthy - } - } -} diff --git a/packages/cp-frontend/src/graphql/ServicesTopology.gql b/packages/cp-frontend/src/graphql/ServicesTopology.gql deleted file mode 100644 index 226ded5a..00000000 --- a/packages/cp-frontend/src/graphql/ServicesTopology.gql +++ /dev/null @@ -1,27 +0,0 @@ -#import "./DeploymentGroupInfo.gql" -#import "./ServiceInfo.gql" - -query Services($deploymentGroupSlug: String!) { - deploymentGroup(slug: $deploymentGroupSlug) { - ...DeploymentGroupInfo - services { - ...ServiceInfo - branches { - id - name - slug - instances { - id - status - healthy - } - } - connections - instances { - id - status - healthy - } - } - } -} diff --git a/packages/cp-frontend/src/graphql/SingleMetrics.gql b/packages/cp-frontend/src/graphql/SingleMetrics.gql deleted file mode 100644 index b089c80a..00000000 --- a/packages/cp-frontend/src/graphql/SingleMetrics.gql +++ /dev/null @@ -1,13 +0,0 @@ -query SingleMetrics { - instanceMetric { - type { - id - name - machineId - } - data { - timestamp - value - } - } -} diff --git a/packages/cp-frontend/src/index.js b/packages/cp-frontend/src/index.js deleted file mode 100644 index 968445cc..00000000 --- a/packages/cp-frontend/src/index.js +++ /dev/null @@ -1,5 +0,0 @@ -import React from 'react'; -import ReactDOM from 'react-dom'; -import App from './app'; - -ReactDOM.render(, document.getElementById('root')); diff --git a/packages/cp-frontend/src/router.js b/packages/cp-frontend/src/router.js deleted file mode 100644 index a523a413..00000000 --- a/packages/cp-frontend/src/router.js +++ /dev/null @@ -1,242 +0,0 @@ -import React from 'react'; -import { BrowserRouter, Redirect, Route, Switch } from 'react-router-dom'; -import styled from 'styled-components'; - -import { Header, Breadcrumb, Menu } from '@containers/navigation'; -import Manifest from '@containers/manifest'; -import Environment from '@containers/environment'; - -import { - DeploymentGroupList, - DeploymentGroupCreate, - DeploymentGroupImport -} from '@containers/deployment-groups'; - -import { - ServiceList, - ServicesTopology, - ServicesMenu, - ServicesQuickActions -} from '@containers/services'; - -import { - ServiceScale, - ServiceDelete, - ServiceMetrics -} from '@containers/service'; - -import { InstanceList, InstancesTooltip } from '@containers/instances'; - -import { DeploymentGroupDelete } from '@containers/deployment-group'; - -import { NotFound } from '@components/navigation'; - -const Container = styled.div` - display: flex; - flex: 1 1 auto; - position: relative; - flex-flow: column; -`; - -const rootRedirect = p => ; - -const servicesListRedirect = p => ( - -); - -const servicesTopologyRedirect = p => ( - -); - -const serviceRedirect = p => ( - -); - -const App = p => ( -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -); - -const Router = ( - - - - - - - - - - -); - -export default Router; diff --git a/packages/cp-frontend/src/state/actions.js b/packages/cp-frontend/src/state/actions.js deleted file mode 100644 index 27919c9b..00000000 --- a/packages/cp-frontend/src/state/actions.js +++ /dev/null @@ -1,14 +0,0 @@ -import constantCase from 'constant-case'; -import { createAction } from 'redux-actions'; - -const APP = constantCase(process.env.APP_NAME); - -/** ***************************** UI ****************************** */ - -export const toggleServicesQuickActions = createAction( - `${APP}/TOGGLE_SERVICES_QUICK_ACTIONS` -); - -export const toggleInstancesTooltip = createAction( - `${APP}/TOGGLE_INSTANCES_TOOLTIP` -); diff --git a/packages/cp-frontend/src/state/reducers/index.js b/packages/cp-frontend/src/state/reducers/index.js deleted file mode 100644 index 570fa5d0..00000000 --- a/packages/cp-frontend/src/state/reducers/index.js +++ /dev/null @@ -1 +0,0 @@ -export { default as ui } from './ui'; diff --git a/packages/cp-frontend/src/state/reducers/ui.js b/packages/cp-frontend/src/state/reducers/ui.js deleted file mode 100644 index 632944dc..00000000 --- a/packages/cp-frontend/src/state/reducers/ui.js +++ /dev/null @@ -1,70 +0,0 @@ -import { handleActions } from 'redux-actions'; -import { - toggleServicesQuickActions, - toggleInstancesTooltip -} from '@state/actions'; - -export const _toggleServicesQuickActions = (state, action) => { - const { position, service, show } = action.payload; - - const s = - show === undefined - ? !state.services.quickActions.service || - service.id !== state.services.quickActions.service.id - : show; - - const quickActions = s - ? { - show: s, - position, - service - } - : { - show: false - }; - - return { - ...state, - services: { - ...state.services, - quickActions - } - }; -}; - -export const _toggleInstancesTooltip = (state, action) => { - const { position, instance, show, type } = action.payload; - - const s = - show === undefined - ? !state.instances.tooltip.instance || - instance.id !== state.instances.tooltip.instance.id - : show; - - const tooltip = s - ? { - show: true, - position, - instance, - type - } - : { - show: false - }; - - return { - ...state, - instances: { - ...state.instances, - tooltip - } - }; -}; - -export default handleActions( - { - [toggleServicesQuickActions.toString()]: _toggleServicesQuickActions, - [toggleInstancesTooltip.toString()]: _toggleInstancesTooltip - }, - {} -); diff --git a/packages/cp-frontend/src/state/selectors.js b/packages/cp-frontend/src/state/selectors.js deleted file mode 100644 index 2fe6f51c..00000000 --- a/packages/cp-frontend/src/state/selectors.js +++ /dev/null @@ -1,202 +0,0 @@ -import { createSelector } from 'reselect'; -import forceArray from 'force-array'; - -const apollo = state => state.apollo; - -// Redux selectors // - -const deploymentGroupBySlug = deploymentGroupSlug => - createSelector( - [apollo], - apollo => - apollo && apollo.data - ? Object.keys(apollo.data).reduce( - (dg, k) => - apollo.data[k].__typename === 'DeploymentGroup' && - apollo.data[k].slug === deploymentGroupSlug - ? apollo.data[k] - : dg, - null - ) - : null - ); - -const serviceBySlug = serviceSlug => - createSelector( - [apollo], - apollo => - apollo && apollo.data - ? Object.keys(apollo.data).reduce( - (s, k) => - apollo.data[k].__typename === 'Service' && - apollo.data[k].slug === serviceSlug - ? apollo.data[k] - : s, - null - ) - : null - ); - -/* const instancesByServiceId = serviceId => - createSelector( - [apollo], - apollo => - apollo && apollo.data - ? Object.keys(apollo.data).reduce((is, i, k) => { - if ( - apollo.data[k].__typename === 'Instance' && - apollo.data[k].service === serviceId - ) { - is.push(apollo.data[k]); - } - return is; - }, []) - : null - ); */ - -// Apollo gql utils // - -const activeInstanceStatuses = [ - 'PROVISIONING', - 'READY', - 'ACTIVE', - 'RUNNING', - 'INCOMPLETE' -]; - -const transitionalServiceStatuses = [ - 'PROVISIONING', - 'SCALING', - 'STOPPING', - 'DELETING', - 'RESTARTING' -]; - -const getInstanceStatuses = service => { - const instanceStatuses = service.instances.reduce((statuses, instance) => { - // if (instance.status !== 'RUNNING') { - if (statuses[instance.status]) { - statuses[instance.status]++; - } else { - statuses[instance.status] = 1; - } - // } - return statuses; - }, {}); - - return Object.keys(instanceStatuses).map(status => ({ - status, - count: instanceStatuses[status] - })); -}; - -const getInstancesActive = instanceStatuses => { - return instanceStatuses.reduce( - (active, instanceStatus) => - activeInstanceStatuses.indexOf(instanceStatus.status) === -1 - ? active - : true, - false - ); -}; - -const getInstancesHealthy = instances => { - return instances.reduce( - (healthy, instance) => ({ - total: healthy.total + 1, - healthy: - instance.healthy === 'HEALTHY' ? healthy.healthy + 1 : healthy.healthy - }), - { total: 0, healthy: 0 } - ); -}; - -const getService = (service, index) => { - const instanceStatuses = getInstanceStatuses(service); - const instancesActive = getInstancesActive(instanceStatuses); - const instancesHealthy = getInstancesHealthy(service.instances); - const transitionalStatus = - transitionalServiceStatuses.indexOf(service.status) !== -1; - return { - index, - ...service, - instanceStatuses, - instancesActive, - instancesHealthy, - transitionalStatus, - isConsul: service.slug === 'consul' - }; -}; - -const processServices = services => { - return forceArray(services).reduce((ss, s, i) => { - if (s.status !== 'DELETED') { - const service = getService(s, i); - if (s.branches && s.branches.length) { - service.children = processServices(s.branches); - } - ss.push(service); - } - - return ss; - }, []); -}; - -const processServicesForTopology = services => { - const processedServices = processServices(services); - - const connectedServices = processedServices.reduce((connections, service) => { - if (!service.connections || !service.connections.length) { - return connections; - } - - const existingConnections = service.connections.reduce( - (connections, connection) => { - const connectionExists = processedServices.filter( - ps => ps.id === connection - ).length; - if (connectionExists) { - connections.push(connection); - } - return connections; - }, - [] - ); - - return existingConnections.length - ? connections.concat(existingConnections).concat(service.id) - : connections; - }, []); - - return processedServices.map(service => ({ - ...service, - connected: connectedServices.indexOf(service.id) !== -1 - })); -}; - -// metricsData should prob be an array rather than an object -const processInstancesMetrics = instances => - forceArray(instances).reduce((metrics, instance) => { - instance.metrics && - instance.metrics.forEach(instanceMetrics => { - metrics[instanceMetrics.name] = forceArray( - metrics[instanceMetrics.name] - ).concat([instanceMetrics]); - }); - - return metrics; - }, {}); - -/* , - instancesByServiceId */ -export { - deploymentGroupBySlug as deploymentGroupBySlugSelector, - serviceBySlug as serviceBySlugSelector, - getInstanceStatuses, - getInstancesActive, - getInstancesHealthy, - getService, - processServices, - processServicesForTopology, - processInstancesMetrics -}; \ No newline at end of file diff --git a/packages/cp-frontend/src/state/state.js b/packages/cp-frontend/src/state/state.js deleted file mode 100644 index 9a006a05..00000000 --- a/packages/cp-frontend/src/state/state.js +++ /dev/null @@ -1,46 +0,0 @@ -const state = { - ui: { - sections: { - deploymentGroups: [ - { - pathname: 'services', - name: 'Services' - }, - { - pathname: 'instances', - name: 'Instances' - }, - { - pathname: 'manifest/edit', - name: 'Manifest' - }, - { - pathname: 'environment', - name: 'Environment' - } - ], - services: [ - { - pathname: 'instances', - name: 'Instances' - }, - { - pathname: 'metrics', - name: 'Metrics' - } - ] - }, - services: { - quickActions: { - show: false - } - }, - instances: { - tooltip: { - show: false - } - } - } -}; - -export default state; diff --git a/packages/cp-frontend/src/state/store.js b/packages/cp-frontend/src/state/store.js deleted file mode 100644 index 83be6937..00000000 --- a/packages/cp-frontend/src/state/store.js +++ /dev/null @@ -1,60 +0,0 @@ -import { createStore, combineReducers, applyMiddleware, compose } from 'redux'; -import { reducer as formReducer } from 'redux-form'; -import { ApolloClient, createNetworkInterface } from 'react-apollo'; -import state from './state'; -import { ui } from './reducers'; - -const GLOBAL = - typeof window === 'object' - ? window - : { - location: { - hostname: '0.0.0.0' - } - }; - -const GQL_PORT = process.env.REACT_APP_GQL_PORT || 443; -const GQL_HOSTNAME = - process.env.REACT_APP_GQL_HOSTNAME || GLOBAL.location.hostname; -const GQL_PROTOCOL = process.env.REACT_APP_GQL_PROTOCOL || 'https'; - -export const client = new ApolloClient({ - dataIdFromObject: o => { - const id = o.id - ? o.id - : o.slug - ? o.slug - : o.uuid - ? o.uuid - : o.timestamp - ? o.timestamp - : o.name && o.instance - ? `${o.name}-${o.instance}` - : o.name - ? o.name - : o.time && o.value - ? `${o.time}-${o.value}` - : 'apollo-cache-key-not-defined'; - return `${o.__typename}:${id}`; - }, - networkInterface: createNetworkInterface({ - uri: `${GQL_PROTOCOL}://${GQL_HOSTNAME}:${GQL_PORT}/api/graphql` - }) -}); - -export const store = createStore( - combineReducers({ - ui, - apollo: client.reducer(), - form: formReducer - }), - state, // Initial state - compose( - applyMiddleware(client.middleware()), - // If you are using the devToolsExtension, you can add it here also - // eslint-disable-next-line no-negated-condition - typeof GLOBAL.__REDUX_DEVTOOLS_EXTENSION__ !== 'undefined' - ? GLOBAL.__REDUX_DEVTOOLS_EXTENSION__() - : f => f - ) -); diff --git a/packages/cp-frontend/test/file-mock.js b/packages/cp-frontend/test/file-mock.js deleted file mode 100644 index d906d5b4..00000000 --- a/packages/cp-frontend/test/file-mock.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = 'test-file-mock'; diff --git a/packages/cp-frontend/test/run b/packages/cp-frontend/test/run deleted file mode 100755 index 255301c0..00000000 --- a/packages/cp-frontend/test/run +++ /dev/null @@ -1,57 +0,0 @@ -#!/usr/bin/env node - -// Do this as the first thing so that any code reading it knows the right env. -process.env.BABEL_ENV = 'test'; -process.env.NODE_ENV = 'test'; -process.env.PUBLIC_URL = ''; - -// Makes the script crash on unhandled rejections instead of silently -// ignoring them. In the future, promise rejections that are not handled will -// terminate the Node.js process with a non-zero exit code. -process.on('unhandledRejection', err => { - throw err; -}); - -// Ensure environment variables are read. -require('react-scripts/config/env'); - -const jest = require('jest'); -const argv = process.argv.slice(2); - -// Watch unless on CI or in coverage mode -if (!process.env.CI && argv.indexOf('--coverage') < 0) { - argv.push('--watch'); -} - -// This is not necessary after eject because we embed config into package.json. -const createJestConfig = require('react-scripts/scripts/utils/createJestConfig'); -const path = require('path'); -const paths = require('react-scripts/config/paths'); - -const config = createJestConfig( - relativePath => - path.resolve(__dirname, '../../../node_modules/react-scripts', relativePath), - path.resolve(__dirname, '../../../'), - false -); - -// patch -config.testEnvironment = 'node'; -config.testMatch = ['/packages/cp-frontend/test/(unit|integration)/**/*.js']; -config.testPathIgnorePatterns = ['/packages/cp-frontend/test/(unit|integration)/mocks']; -config.transform = Object.assign({}, { - '\\.(gql|graphql)$': 'jest-transform-graphql' -}, config.transform) -config.moduleNameMapper = Object.assign({}, config.moduleNameMapper, { - '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': '/packages/cp-frontend/test/file-mock.js', - '^@root/(.*)$': '/packages/cp-frontend/src/$1', - '^@components/(.*)$': '/packages/cp-frontend/src/components/$1', - '^@containers/(.*)$': '/packages/cp-frontend/src/containers/$1', - '^@graphql/(.*)$': '/packages/cp-frontend/src/graphql/$1', - '^@assets/(.*)$': '/packages/cp-frontend/src/assets/$1', - '^@state/(.*)$': '/packages/cp-frontend/src/state/$1' -}); - -argv.push('--config', JSON.stringify(config)); - -jest.run(argv); diff --git a/packages/cp-frontend/test/unit/components/deployment-group/__snapshots__/delete.js.snap b/packages/cp-frontend/test/unit/components/deployment-group/__snapshots__/delete.js.snap deleted file mode 100644 index 5a50b859..00000000 --- a/packages/cp-frontend/test/unit/components/deployment-group/__snapshots__/delete.js.snap +++ /dev/null @@ -1,487 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4:focus { - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border-color: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: ; - border-color: ; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c2 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -

    - Deleting a deployment group: -
    - - Wordpress Blog Example -

    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -

    - Deleting a deployment group will also remove all of the services and instances associated with that deployment group. Are you sure you want to continue? -

    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    -`; diff --git a/packages/cp-frontend/test/unit/components/deployment-group/delete.js b/packages/cp-frontend/test/unit/components/deployment-group/delete.js deleted file mode 100644 index f6376d51..00000000 --- a/packages/cp-frontend/test/unit/components/deployment-group/delete.js +++ /dev/null @@ -1,17 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import DeploymentGroupDelete from '@components/deployment-group/delete.js'; -import { deploymentGroup } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create() - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/instances/__snapshots__/empty.js.snap b/packages/cp-frontend/test/unit/components/instances/__snapshots__/empty.js.snap deleted file mode 100644 index 435fc679..00000000 --- a/packages/cp-frontend/test/unit/components/instances/__snapshots__/empty.js.snap +++ /dev/null @@ -1,95 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -@media only screen and (min-width:0em) { - .c1 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -@media only screen and (min-width:0em) { - .c0 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -

    - You don't have any instances -

    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/instances/__snapshots__/list-item.js.snap b/packages/cp-frontend/test/unit/components/instances/__snapshots__/list-item.js.snap deleted file mode 100644 index 8834726e..00000000 --- a/packages/cp-frontend/test/unit/components/instances/__snapshots__/list-item.js.snap +++ /dev/null @@ -1,1034 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c12 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -.c9 { - -webkit-fill: ; - fill: ; -} - -.c3 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c4 { - display: inline-block; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c6 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; - min-height: auto; - height: 3rem; - margin-bottom: 1rem; - background-color: ; -} - -.c2 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - margin: 0; - height: auto; - padding-top: 0; - min-width: auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; -} - -.c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - margin-left: 1.5rem; -} - -.c10::first-letter { - text-transform: capitalize; -} - -.c8 { - position: absolute; -} - -.c7 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -.c13 { - margin-right: 0.375rem; - width: 0.375rem; - height: 0.375rem; - border-radius: 0.1875rem; - display: inline-block; - background-color: ; -} - -.c0 { - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - background-color: ; -} - -.c0:not(:last-child) { - margin-bottom: 0; - box-shadow: none; - border-bottom-width: 0; -} - -.c11 { - height: 100%; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -.c7 { - -webkit-fill: ; - fill: ; -} - -.c1 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c2 { - display: inline-block; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c4 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - margin: 0; - height: auto; - padding-top: 0; - min-width: auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; -} - -.c8 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - margin-left: 1.5rem; -} - -.c8::first-letter { - text-transform: capitalize; -} - -.c6 { - position: absolute; -} - -.c5 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -.c11 { - margin-right: 0.375rem; - width: 0.375rem; - height: 0.375rem; - border-radius: 0.1875rem; - display: inline-block; - background-color: ; -} - -.c9 { - height: 100%; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c0 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c1 { - display: inline-block; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - -
    - .c0 { - display: inline-block; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - - - wordpress_01 - -
    - .c5 { - -webkit-fill: ; - fill: ; -} - -.c1 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c2 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - margin-left: 1.5rem; -} - -.c6::first-letter { - text-transform: capitalize; -} - -.c4 { - position: absolute; -} - -.c3 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c3 { - -webkit-fill: ; - fill: ; -} - -.c0 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - margin-left: 1.5rem; -} - -.c4::first-letter { - text-transform: capitalize; -} - -.c2 { - position: absolute; -} - -.c1 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c2 { - -webkit-fill: ; - fill: ; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - margin-left: 1.5rem; -} - -.c3::first-letter { - text-transform: capitalize; -} - -.c1 { - position: absolute; -} - -.c0 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c1 { - -webkit-fill: ; - fill: ; -} - -.c0 { - position: absolute; -} - -
    - .c0 { - -webkit-fill: ; - fill: ; -} - - - - icon: state - - - - - - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - margin-left: 1.5rem; -} - -.c0::first-letter { - text-transform: capitalize; -} - - -
    -
    -
    - .c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -.c1 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c2 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c5 { - margin-right: 0.375rem; - width: 0.375rem; - height: 0.375rem; - border-radius: 0.1875rem; - display: inline-block; - background-color: ; -} - -.c3 { - height: 100%; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -.c0 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c3 { - margin-right: 0.375rem; - width: 0.375rem; - height: 0.375rem; - border-radius: 0.1875rem; - display: inline-block; - background-color: ; -} - -.c1 { - height: 100%; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -.c2 { - margin-right: 0.375rem; - width: 0.375rem; - height: 0.375rem; - border-radius: 0.1875rem; - display: inline-block; - background-color: ; -} - -.c0 { - height: 100%; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -.c1 { - margin-right: 0.375rem; - width: 0.375rem; - height: 0.375rem; - border-radius: 0.1875rem; - display: inline-block; - background-color: ; -} - - -
    -
    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/instances/empty.js b/packages/cp-frontend/test/unit/components/instances/empty.js deleted file mode 100644 index f3a9f023..00000000 --- a/packages/cp-frontend/test/unit/components/instances/empty.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import EmtpyInstances from '@components/instances/empty.js'; - -it('renders without throwing', () => { - const tree = renderer.create().toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/instances/list-item.js b/packages/cp-frontend/test/unit/components/instances/list-item.js deleted file mode 100644 index 14929098..00000000 --- a/packages/cp-frontend/test/unit/components/instances/list-item.js +++ /dev/null @@ -1,15 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import InstanceCard from '@components/instances/list-item.js'; -import { instance } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer.create().toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/layout/__snapshots__/container.js.snap b/packages/cp-frontend/test/unit/components/layout/__snapshots__/container.js.snap deleted file mode 100644 index 8324951c..00000000 --- a/packages/cp-frontend/test/unit/components/layout/__snapshots__/container.js.snap +++ /dev/null @@ -1,38 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c0 { - margin-right: auto; - margin-left: auto; - padding-top: 1.1875rem; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - display: block; - -webkit-flex-flow: column; - -ms-flex-flow: column; - flex-flow: column; -} - -@media only screen and (min-width:48em) { - .c0 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c0 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c0 { - width: 76rem; - } -} - -
    -`; diff --git a/packages/cp-frontend/test/unit/components/layout/container.js b/packages/cp-frontend/test/unit/components/layout/container.js deleted file mode 100644 index 2883f3ee..00000000 --- a/packages/cp-frontend/test/unit/components/layout/container.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import Container from '@components/layout/container'; - -it('renders without throwing', () => { - const tree = renderer.create().toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/editors.js.snap b/packages/cp-frontend/test/unit/components/manifest/__snapshots__/editors.js.snap deleted file mode 100644 index 9b5ecf30..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/editors.js.snap +++ /dev/null @@ -1,729 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -
    - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -

    - Loading... -

    -
    -`; - -exports[`renders without throwing 2`] = ` -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -
    - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -

    - Loading... -

    -
    -`; - -exports[`renders without throwing 1`] = ` -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -
    - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -

    - Loading... -

    -
    -`; - -exports[`renders without throwing 2`] = ` -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -
    - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -

    - Loading... -

    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/environment.js.snap b/packages/cp-frontend/test/unit/components/manifest/__snapshots__/environment.js.snap deleted file mode 100644 index 1df5d9b8..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/environment.js.snap +++ /dev/null @@ -1,2922 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c18 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c4 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c19 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c5 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c20 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c15 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c15::-moz-focus-inner, -.c15[type='button']::-moz-focus-inner, -.c15[type='reset']::-moz-focus-inner, -.c15[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c15:-moz-focusring, -.c15[type='button']:-moz-focusring, -.c15[type='reset']:-moz-focusring, -.c15[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c15:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c15:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c15:active, -.c15:active:hover, -.c15:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c15[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c15:focus { - background-color: ; - border-color: ; -} - -.c15:hover { - background-color: ; - border-color: ; -} - -.c15:active, -.c15:active:hover, -.c15:active:focus { - background-color: ; - border-color: ; -} - -.c15 + button { - margin-left: 1.25rem; -} - -.c17 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c17::-moz-focus-inner, -.c17[type='button']::-moz-focus-inner, -.c17[type='reset']::-moz-focus-inner, -.c17[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c17:-moz-focusring, -.c17[type='button']:-moz-focusring, -.c17[type='reset']:-moz-focusring, -.c17[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c17:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c17:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c17:active, -.c17:active:hover, -.c17:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c17[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c17:focus { - background-color: ; - border-color: ; -} - -.c17:hover { - background-color: ; - border-color: ; -} - -.c17:active, -.c17:active:hover, -.c17:active:focus { - background-color: ; - border-color: ; -} - -.c17 + button { - margin-left: 1.25rem; -} - -.c8 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c11 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c14 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c14:focus { - border-color: ; - outline: 0; -} - -.c10 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -.c12 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c13 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - -.c9 { - padding: 1.5rem 1.1875rem; -} - -.c7 { - background-color: ; - height: 0.0625rem; - margin: 0; - margin-top: 2.125rem; -} - -.c16 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 2.125rem; - margin-bottom: 0.1875rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin-top: 0.1875rem; - margin-bottom: 1.25rem; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 2.125rem; - margin-bottom: 0.1875rem; -} - -

    - Global variables -

    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin-top: 0.1875rem; - margin-bottom: 1.25rem; -} - -

    - These variables are going to be availabe for interpolation in the manifest -

    - .c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -
    - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -

    - Loading... -

    -
    - .c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c0 { - background-color: ; - height: 0.0625rem; - margin: 0; - margin-top: 2.125rem; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 2.125rem; - margin-bottom: 0.1875rem; -} - -

    - Enviroment files -

    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin-top: 0.1875rem; - margin-bottom: 1.25rem; -} - -

    - The variables from this files will be applied to the services that require them -

    - .c7 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c8 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c9 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c11 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c11::-moz-focus-inner, -.c11[type='button']::-moz-focus-inner, -.c11[type='reset']::-moz-focus-inner, -.c11[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c11:-moz-focusring, -.c11[type='button']:-moz-focusring, -.c11[type='reset']:-moz-focusring, -.c11[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c11:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c11:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c11:active, -.c11:active:hover, -.c11:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c11[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c11:focus { - background-color: ; - border-color: ; -} - -.c11:hover { - background-color: ; - border-color: ; -} - -.c11:active, -.c11:active:hover, -.c11:active:focus { - background-color: ; - border-color: ; -} - -.c11 + button { - margin-left: 1.25rem; -} - -.c2 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c5 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c5:focus { - border-color: ; - outline: 0; -} - -.c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; -} - -.c6 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -.c3 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c4 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - -.c0 { - padding: 1.5rem 1.1875rem; -} - -
    - .c7 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c8 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c9 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c2 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c5 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c5:focus { - border-color: ; - outline: 0; -} - -.c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; -} - -.c6 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -.c3 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c4 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - -.c0 { - padding: 1.5rem 1.1875rem; -} - -
    - .c0 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c3 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c3:focus { - border-color: ; - outline: 0; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c2 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - -
    - .c2 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c2:focus { - border-color: ; - outline: 0; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c1 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - -
    - .c2 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c2:focus { - border-color: ; - outline: 0; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c1 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - - - .c1 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c1:focus { - border-color: ; - outline: 0; -} - -.c0 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - - - -
    -
    - .c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -
    - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -

    - Loading... -

    -
    -
    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    - .c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c0 { - background-color: ; - height: 0.0625rem; - margin: 0; - margin-top: 2.125rem; -} - -
    - .c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c4 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c5 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1:focus { - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: ; - border-color: ; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2:focus { - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border-color: ; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-color: ; - border-color: ; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -
    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    - -`; - -exports[`renders without throwing 2`] = ` -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c4 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c5 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c8 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -.c7 { - background-color: ; - height: 0.0625rem; - margin: 0; - margin-top: 2.125rem; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 2.125rem; - margin-bottom: 0.1875rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin-top: 0.1875rem; - margin-bottom: 1.25rem; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 2.125rem; - margin-bottom: 0.1875rem; -} - -

    - Global variables -

    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin-top: 0.1875rem; - margin-bottom: 1.25rem; -} - -

    - These variables are going to be availabe for interpolation in the manifest -

    - .c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -
    - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -

    - Loading... -

    -
    - .c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c0 { - background-color: ; - height: 0.0625rem; - margin: 0; - margin-top: 2.125rem; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 2.125rem; - margin-bottom: 0.1875rem; -} - -

    - Enviroment files -

    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin-top: 0.1875rem; - margin-bottom: 1.25rem; -} - -

    - The variables from this files will be applied to the services that require them -

    -
    - -`; diff --git a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/files.js.snap b/packages/cp-frontend/test/unit/components/manifest/__snapshots__/files.js.snap deleted file mode 100644 index 72fb4ab0..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/files.js.snap +++ /dev/null @@ -1,835 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c7 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c8 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c9 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c2 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c5 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c5:focus { - border-color: ; - outline: 0; -} - -.c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; -} - -.c6 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -.c3 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c4 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - -.c0 { - padding: 1.5rem 1.1875rem; -} - -
    - .c7 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c8 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c9 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c2 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c5 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c5:focus { - border-color: ; - outline: 0; -} - -.c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; -} - -.c6 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -.c3 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c4 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - -.c0 { - padding: 1.5rem 1.1875rem; -} - -
    - .c0 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c3 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c3:focus { - border-color: ; - outline: 0; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c2 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - -
    - .c2 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c2:focus { - border-color: ; - outline: 0; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c1 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - -
    - .c2 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c2:focus { - border-color: ; - outline: 0; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c1 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - - - .c1 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c1:focus { - border-color: ; - outline: 0; -} - -.c0 { - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - margin: 0 0 0.8125rem 0; -} - - - -
    -
    - .c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -
    - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -

    - Loading... -

    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/manifest.js.snap b/packages/cp-frontend/test/unit/components/manifest/__snapshots__/manifest.js.snap deleted file mode 100644 index 93ecc116..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/manifest.js.snap +++ /dev/null @@ -1,334 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` - - - -`; - -exports[`renders without throwing 2`] = ` - - - -`; - -exports[`renders without throwing 3`] = ` - - - -`; diff --git a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/name.js.snap b/packages/cp-frontend/test/unit/components/manifest/__snapshots__/name.js.snap deleted file mode 100644 index e06e611f..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/name.js.snap +++ /dev/null @@ -1,2737 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c8 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c8::-moz-focus-inner, -.c8[type='button']::-moz-focus-inner, -.c8[type='reset']::-moz-focus-inner, -.c8[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c8:-moz-focusring, -.c8[type='button']:-moz-focusring, -.c8[type='reset']:-moz-focusring, -.c8[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c8:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c8[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c8:focus { - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border-color: ; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - background-color: ; - border-color: ; -} - -.c8 + button { - margin-left: 1.25rem; -} - -.c9 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c9::-moz-focus-inner, -.c9[type='button']::-moz-focus-inner, -.c9[type='reset']::-moz-focus-inner, -.c9[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c9:-moz-focusring, -.c9[type='button']:-moz-focusring, -.c9[type='reset']:-moz-focusring, -.c9[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c9:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c9:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c9[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c9:focus { - background-color: ; - border-color: ; -} - -.c9:hover { - background-color: ; - border-color: ; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus { - background-color: ; - border-color: ; -} - -.c9 + button { - margin-left: 1.25rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c5 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c2 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c6 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c6:focus { - border-color: ; - outline: 0; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -.c7 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -@media only screen and (min-width:0em) { - .c1 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c1 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -@media only screen and (min-width:75em) { - .c1 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c5 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c2 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c6 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c6:focus { - border-color: ; - outline: 0; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -@media only screen and (min-width:0em) { - .c1 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c1 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -@media only screen and (min-width:75em) { - .c1 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c4 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c1 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c5 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c5:focus { - border-color: ; - outline: 0; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -@media only screen and (min-width:0em) { - .c0 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c0 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -@media only screen and (min-width:75em) { - .c0 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -
    - .c3 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c0 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c4 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c4:focus { - border-color: ; - outline: 0; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -
    - .c2 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c3 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c3:focus { - border-color: ; - outline: 0; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -
    - .c2 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - - - .c0 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c0:focus { - border-color: ; - outline: 0; -} - - -
    -
    -
    -
    - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1:focus { - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: ; - border-color: ; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2:focus { - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border-color: ; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-color: ; - border-color: ; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -
    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    -
    -`; - -exports[`renders without throwing 2`] = ` -.c8 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c8::-moz-focus-inner, -.c8[type='button']::-moz-focus-inner, -.c8[type='reset']::-moz-focus-inner, -.c8[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c8:-moz-focusring, -.c8[type='button']:-moz-focusring, -.c8[type='reset']:-moz-focusring, -.c8[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c8:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c8[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c8:focus { - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border-color: ; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - background-color: ; - border-color: ; -} - -.c8 + button { - margin-left: 1.25rem; -} - -.c9 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c9::-moz-focus-inner, -.c9[type='button']::-moz-focus-inner, -.c9[type='reset']::-moz-focus-inner, -.c9[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c9:-moz-focusring, -.c9[type='button']:-moz-focusring, -.c9[type='reset']:-moz-focusring, -.c9[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c9:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c9:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c9[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c9:focus { - background-color: ; - border-color: ; -} - -.c9:hover { - background-color: ; - border-color: ; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus { - background-color: ; - border-color: ; -} - -.c9 + button { - margin-left: 1.25rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c5 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c2 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c6 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c6:focus { - border-color: ; - outline: 0; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -.c7 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -@media only screen and (min-width:0em) { - .c1 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c1 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -@media only screen and (min-width:75em) { - .c1 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c5 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c2 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c6 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c6:focus { - border-color: ; - outline: 0; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -@media only screen and (min-width:0em) { - .c1 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c1 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -@media only screen and (min-width:75em) { - .c1 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c4 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c1 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c5 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c5:focus { - border-color: ; - outline: 0; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -@media only screen and (min-width:0em) { - .c0 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c0 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -@media only screen and (min-width:75em) { - .c0 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -
    - .c3 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c0 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c4 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c4:focus { - border-color: ; - outline: 0; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -
    - .c2 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c3 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c3:focus { - border-color: ; - outline: 0; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - -
    - .c2 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - margin-right: 0.75rem; - font-weight: bold; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; -} - - - .c0 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c0:focus { - border-color: ; - outline: 0; -} - - -
    -
    -
    -
    - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1:focus { - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: ; - border-color: ; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2:focus { - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border-color: ; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-color: ; - border-color: ; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -
    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/progress.js.snap b/packages/cp-frontend/test/unit/components/manifest/__snapshots__/progress.js.snap deleted file mode 100644 index fb6d65c2..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/progress.js.snap +++ /dev/null @@ -1,19056 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c6::-moz-focus-inner, -.c6[type='button']::-moz-focus-inner, -.c6[type='reset']::-moz-focus-inner, -.c6[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c6:-moz-focusring, -.c6[type='button']:-moz-focusring, -.c6[type='reset']:-moz-focusring, -.c6[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6 + button { - margin-left: 1.25rem; -} - -.c1 { - float: left; - background-color: ; -} - -.c4 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c10 { - -webkit-fill: none; - fill: none; -} - -.c3 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c9 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c5 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c5:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c8 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c12 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c13 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c7 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -.c11 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -.c14 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -.c0 { - display: table; - list-style-type: none; - padding: 0; -} - -
      - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - - -
      -
    • -
    -`; - -exports[`renders without throwing 2`] = ` -.c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c6::-moz-focus-inner, -.c6[type='button']::-moz-focus-inner, -.c6[type='reset']::-moz-focus-inner, -.c6[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c6:-moz-focusring, -.c6[type='button']:-moz-focusring, -.c6[type='reset']:-moz-focusring, -.c6[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6 + button { - margin-left: 1.25rem; -} - -.c1 { - float: left; - background-color: ; -} - -.c4 { - -webkit-fill: none; - fill: none; -} - -.c3 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c5 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c5:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c8 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c9 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: none; -} - -.c7 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -.c10 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -.c0 { - display: table; - list-style-type: none; - padding: 0; -} - -
      - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - - -
      -
    • -
    -`; - -exports[`renders without throwing 3`] = ` -.c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c6::-moz-focus-inner, -.c6[type='button']::-moz-focus-inner, -.c6[type='reset']::-moz-focus-inner, -.c6[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c6:-moz-focusring, -.c6[type='button']:-moz-focusring, -.c6[type='reset']:-moz-focusring, -.c6[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6 + button { - margin-left: 1.25rem; -} - -.c1 { - float: left; - background-color: ; -} - -.c10 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c13 { - -webkit-fill: none; - fill: none; -} - -.c4 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c9 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c12 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c5 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c5:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c11 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c15 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c8 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c7 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -.c14 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -.c16 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -.c0 { - display: table; - list-style-type: none; - padding: 0; -} - -
      - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - - -
      -
    • -
    -`; - -exports[`renders without throwing 4`] = ` -.c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c6::-moz-focus-inner, -.c6[type='button']::-moz-focus-inner, -.c6[type='reset']::-moz-focus-inner, -.c6[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c6:-moz-focusring, -.c6[type='button']:-moz-focusring, -.c6[type='reset']:-moz-focusring, -.c6[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6 + button { - margin-left: 1.25rem; -} - -.c1 { - float: left; - background-color: ; -} - -.c11 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c14 { - -webkit-fill: none; - fill: none; -} - -.c4 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c10 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c13 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c5 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c5:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c12 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c8 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c9 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c7 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -.c15 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -.c0 { - display: table; - list-style-type: none; - padding: 0; -} - -
      - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - - -
      -
    • -
    -`; - -exports[`renders without throwing 5`] = ` -.c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c6::-moz-focus-inner, -.c6[type='button']::-moz-focus-inner, -.c6[type='reset']::-moz-focus-inner, -.c6[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c6:-moz-focusring, -.c6[type='button']:-moz-focusring, -.c6[type='reset']:-moz-focusring, -.c6[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6 + button { - margin-left: 1.25rem; -} - -.c1 { - float: left; - background-color: ; -} - -.c12 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c4 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c11 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c3 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c5 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c5:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c8 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c9 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c10 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c7 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -.c13 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; - border-color: ; -} - -.c0 { - display: table; - list-style-type: none; - padding: 0; -} - -
      - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; - border-color: ; -} - - -
      -
    • -
    -`; - -exports[`renders without throwing 6`] = ` -.c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c6::-moz-focus-inner, -.c6[type='button']::-moz-focus-inner, -.c6[type='reset']::-moz-focus-inner, -.c6[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c6:-moz-focusring, -.c6[type='button']:-moz-focusring, -.c6[type='reset']:-moz-focusring, -.c6[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6 + button { - margin-left: 1.25rem; -} - -.c1 { - float: left; - background-color: ; -} - -.c4 { - -webkit-fill: none; - fill: none; -} - -.c3 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c5 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c5:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c8 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c9 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: none; -} - -.c7 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -.c10 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -.c0 { - display: table; - list-style-type: none; - padding: 0; -} - -
      - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - - -
      -
    • -
    -`; - -exports[`renders without throwing 7`] = ` -.c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c6::-moz-focus-inner, -.c6[type='button']::-moz-focus-inner, -.c6[type='reset']::-moz-focus-inner, -.c6[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c6:-moz-focusring, -.c6[type='button']:-moz-focusring, -.c6[type='reset']:-moz-focusring, -.c6[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6 + button { - margin-left: 1.25rem; -} - -.c1 { - float: left; - background-color: ; -} - -.c10 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c13 { - -webkit-fill: none; - fill: none; -} - -.c4 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c9 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c12 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c5 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c5:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c11 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c8 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c7 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -.c14 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -.c0 { - display: table; - list-style-type: none; - padding: 0; -} - -
      - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - - -
      -
    • -
    -`; - -exports[`renders without throwing 8`] = ` -.c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c6::-moz-focus-inner, -.c6[type='button']::-moz-focus-inner, -.c6[type='reset']::-moz-focus-inner, -.c6[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c6:-moz-focusring, -.c6[type='button']:-moz-focusring, -.c6[type='reset']:-moz-focusring, -.c6[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6 + button { - margin-left: 1.25rem; -} - -.c1 { - float: left; - background-color: ; -} - -.c11 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c4 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c10 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c3 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c5 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c5:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c8 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c9 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c7 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -.c12 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; - border-color: ; -} - -.c0 { - display: table; - list-style-type: none; - padding: 0; -} - -
      - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; - border-color: ; -} - - -
      -
    • -
    -`; diff --git a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/review.js.snap b/packages/cp-frontend/test/unit/components/manifest/__snapshots__/review.js.snap deleted file mode 100644 index 96133d3d..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/__snapshots__/review.js.snap +++ /dev/null @@ -1,2371 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c4 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c5 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1:focus { - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: ; - border-color: ; -} - -.c1:focus { - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: ; - border-color: ; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2:focus { - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border-color: ; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-color: ; - border-color: ; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -
    - .c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c4 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c5 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1:focus { - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: ; - border-color: ; -} - -.c1:focus { - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: ; - border-color: ; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2:focus { - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border-color: ; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-color: ; - border-color: ; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -
    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    -
    -`; - -exports[`renders without throwing 2`] = ` -.c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1:focus { - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: ; - border-color: ; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -
    - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1:focus { - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: ; - border-color: ; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -
    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    -
    -`; - -exports[`renders without throwing 3`] = ` -.c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1:focus { - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: ; - border-color: ; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -
    - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1:focus { - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: ; - border-color: ; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin: 1.8125rem 0 3.75rem 0; -} - -
    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/manifest/editors.js b/packages/cp-frontend/test/unit/components/manifest/editors.js deleted file mode 100644 index 093f5900..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/editors.js +++ /dev/null @@ -1,54 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; -import { Store } from '../../mocks'; - -import { MEditor, EEditor } from '@components/manifest/editors'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); \ No newline at end of file diff --git a/packages/cp-frontend/test/unit/components/manifest/environment.js b/packages/cp-frontend/test/unit/components/manifest/environment.js deleted file mode 100644 index 5e7e7780..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/environment.js +++ /dev/null @@ -1,52 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; -import { Store, files } from '../../mocks'; -import { reduxForm } from 'redux-form'; - -import { Environment } from '@components/manifest'; -const TestEnvironmentForm = reduxForm({ form: 'testNameForm' })(Environment); - -it('renders without throwing', () => { - const tree = renderer - .create( - - {}} - onCancel={() => {}} - onAddFile={() => {}} - onRemoveFile={() => {}} - dirty - defaultValue="" - files={files} - loading - /> - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - {}} - onCancel={() => {}} - onAddFile={() => {}} - onRemoveFile={() => {}} - dirty - files={[]} - readOnly - loading - /> - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); \ No newline at end of file diff --git a/packages/cp-frontend/test/unit/components/manifest/files.js b/packages/cp-frontend/test/unit/components/manifest/files.js deleted file mode 100644 index ed8a415b..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/files.js +++ /dev/null @@ -1,28 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; -import { Store, files } from '../../mocks'; - -import { Files } from '@components/manifest'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - {}} - readOnly - /> - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); \ No newline at end of file diff --git a/packages/cp-frontend/test/unit/components/manifest/manifest.js b/packages/cp-frontend/test/unit/components/manifest/manifest.js deleted file mode 100644 index 354b7311..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/manifest.js +++ /dev/null @@ -1,61 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import ShallowRenderer from 'react-test-renderer/shallow'; -import 'jest-styled-components'; -import { Store } from '../../mocks'; -import { reduxForm } from 'redux-form'; - -import { Manifest } from '@components/manifest'; - -const ManifestTestForm = reduxForm({ form: 'ManifestTestForm' })(Manifest); - -it('renders without throwing', () => { - const renderer = new ShallowRenderer(); - renderer.render( - - {}} - onCancel={() => {}} - dirty - loading - /> - - ); - const tree = renderer.getRenderOutput(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const renderer = new ShallowRenderer(); - renderer.render( - - {}} - onCancel={() => {}} - loading - /> - - ); - const tree = renderer.getRenderOutput(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const renderer = new ShallowRenderer(); - renderer.render( - - {}} - onCancel={() => {}} - /> - - ); - const tree = renderer.getRenderOutput(); - expect(tree).toMatchSnapshot(); -}); \ No newline at end of file diff --git a/packages/cp-frontend/test/unit/components/manifest/name.js b/packages/cp-frontend/test/unit/components/manifest/name.js deleted file mode 100644 index c6974348..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/name.js +++ /dev/null @@ -1,35 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; -import { Store } from '../../mocks'; -import { reduxForm } from 'redux-form'; - -import { Name } from '@components/manifest'; - -const TestNameForm = reduxForm({ form: 'testNameForm' })(Name); - -it('renders without throwing', () => { - const tree = renderer - .create( - - {}} onCancel={() => {}} dirty /> - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - {}} onCancel={() => {}} /> - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); \ No newline at end of file diff --git a/packages/cp-frontend/test/unit/components/manifest/progress.js b/packages/cp-frontend/test/unit/components/manifest/progress.js deleted file mode 100644 index 6ebc1e5d..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/progress.js +++ /dev/null @@ -1,98 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; -import { Store } from '../../mocks'; - -import { Progress } from '@components/manifest'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); \ No newline at end of file diff --git a/packages/cp-frontend/test/unit/components/manifest/review.js b/packages/cp-frontend/test/unit/components/manifest/review.js deleted file mode 100644 index fd4b4f6c..00000000 --- a/packages/cp-frontend/test/unit/components/manifest/review.js +++ /dev/null @@ -1,64 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; -import { Store, services } from '../../mocks'; - -import { Review } from '@components/manifest'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - {}} - onEnvironmentToggle={() => {}} - onCancel={() => {}} - dirty - loading - environmentToggles={{ name: test }} - state={{ services }} - /> - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - {}} - onEnvironmentToggle={() => {}} - onCancel={() => {}} - dirty - environmentToggles={{ name: test }} - state={{ services }} - /> - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders without throwing', () => { - const tree = renderer - .create( - - {}} - onEnvironmentToggle={() => {}} - onCancel={() => {}} - environmentToggles={{ name: test }} - state={{ services }} - /> - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); \ No newline at end of file diff --git a/packages/cp-frontend/test/unit/components/messaging/__snapshots__/error.js.snap b/packages/cp-frontend/test/unit/components/messaging/__snapshots__/error.js.snap deleted file mode 100644 index 3ffaec81..00000000 --- a/packages/cp-frontend/test/unit/components/messaging/__snapshots__/error.js.snap +++ /dev/null @@ -1,88 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - position: relative; - margin-bottom: 0.75rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - border: 0.0625rem solid; -} - -.c1 { - position: absolute; - top: 0; - left: 0; - width: 2.25rem; - height: 100%; - background-color: ; -} - -.c2 { - padding: 0.75rem 0 0.84375rem 0; -} - -.c3 { - margin: 0.09375rem 3.375rem 0 3.375rem; -} - -
    - .c0 { - position: absolute; - top: 0; - left: 0; - width: 2.25rem; - height: 100%; - background-color: ; -} - -
    - .c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - padding: 0.75rem 0 0.84375rem 0; -} - -.c1 { - margin: 0.09375rem 3.375rem 0 3.375rem; -} - -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - margin: 0.09375rem 3.375rem 0 3.375rem; -} - -

    - Ooops, there's been an error -

    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/messaging/__snapshots__/loader.js.snap b/packages/cp-frontend/test/unit/components/messaging/__snapshots__/loader.js.snap deleted file mode 100644 index 20322beb..00000000 --- a/packages/cp-frontend/test/unit/components/messaging/__snapshots__/loader.js.snap +++ /dev/null @@ -1,183 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -
    - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -

    - Loading... -

    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/messaging/__snapshots__/modal-error.js.snap b/packages/cp-frontend/test/unit/components/messaging/__snapshots__/modal-error.js.snap deleted file mode 100644 index 12321cfa..00000000 --- a/packages/cp-frontend/test/unit/components/messaging/__snapshots__/modal-error.js.snap +++ /dev/null @@ -1,301 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5:focus { - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border-color: ; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: ; - border-color: ; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c1 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c3 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -.c0 { - color: ; -} - -
    - .c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c1 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c0 { - color: ; -} - -

    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -

    - Modal error message -

    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -

    -`; diff --git a/packages/cp-frontend/test/unit/components/messaging/__snapshots__/warning.js.snap b/packages/cp-frontend/test/unit/components/messaging/__snapshots__/warning.js.snap deleted file mode 100644 index f23b24c3..00000000 --- a/packages/cp-frontend/test/unit/components/messaging/__snapshots__/warning.js.snap +++ /dev/null @@ -1,88 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - position: relative; - margin-bottom: 0.75rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - border: 0.0625rem solid; -} - -.c1 { - position: absolute; - top: 0; - left: 0; - width: 2.25rem; - height: 100%; - background-color: ; -} - -.c2 { - padding: 0.75rem 0 0.84375rem 0; -} - -.c3 { - margin: 0.09375rem 3.375rem 0 3.375rem; -} - -
    - .c0 { - position: absolute; - top: 0; - left: 0; - width: 2.25rem; - height: 100%; - background-color: ; -} - -
    - .c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - padding: 0.75rem 0 0.84375rem 0; -} - -.c1 { - margin: 0.09375rem 3.375rem 0 3.375rem; -} - -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - margin: 0.09375rem 3.375rem 0 3.375rem; -} - -

    - Warning message -

    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/messaging/error.js b/packages/cp-frontend/test/unit/components/messaging/error.js deleted file mode 100644 index fbc498a5..00000000 --- a/packages/cp-frontend/test/unit/components/messaging/error.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import Error from '@components/messaging/error'; - -it('renders without throwing', () => { - const tree = renderer.create().toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/messaging/loader.js b/packages/cp-frontend/test/unit/components/messaging/loader.js deleted file mode 100644 index e32492d5..00000000 --- a/packages/cp-frontend/test/unit/components/messaging/loader.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import Loader from '@components/messaging/loader'; - -it('renders without throwing', () => { - const tree = renderer.create().toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/messaging/modal-error.js b/packages/cp-frontend/test/unit/components/messaging/modal-error.js deleted file mode 100644 index 4d6d2388..00000000 --- a/packages/cp-frontend/test/unit/components/messaging/modal-error.js +++ /dev/null @@ -1,18 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import ModalError from '@components/messaging/modal-error'; - -it('renders without throwing', () => { - const tree = renderer - .create( - {}} /> - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/messaging/warning.js b/packages/cp-frontend/test/unit/components/messaging/warning.js deleted file mode 100644 index eb7e7728..00000000 --- a/packages/cp-frontend/test/unit/components/messaging/warning.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import Warning from '@components/messaging/warning'; - -it('renders without throwing', () => { - const tree = renderer.create().toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/navigation/__snapshots__/breadcrumb.js.snap b/packages/cp-frontend/test/unit/components/navigation/__snapshots__/breadcrumb.js.snap deleted file mode 100644 index ece13c04..00000000 --- a/packages/cp-frontend/test/unit/components/navigation/__snapshots__/breadcrumb.js.snap +++ /dev/null @@ -1,203 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c1 { - margin-right: auto; - margin-left: auto; -} - -.c3 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c2 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c0 { - border-bottom: solid 0.0625rem; -} - -@media only screen and (min-width:48em) { - .c1 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c1 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c1 { - width: 76rem; - } -} - -@media only screen and (min-width:0em) { - .c2 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -
    - .c0 { - margin-right: auto; - margin-left: auto; -} - -.c2 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -@media only screen and (min-width:48em) { - .c0 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c0 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c0 { - width: 76rem; - } -} - -@media only screen and (min-width:0em) { - .c1 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -
    - .c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -@media only screen and (min-width:0em) { - .c0 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -
    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/navigation/__snapshots__/header.js.snap b/packages/cp-frontend/test/unit/components/navigation/__snapshots__/header.js.snap deleted file mode 100644 index 5cd22ce0..00000000 --- a/packages/cp-frontend/test/unit/components/navigation/__snapshots__/header.js.snap +++ /dev/null @@ -1,359 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders
    without throwing 1`] = ` -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - text-transform: uppercase; - color: ; - font-size: 1.8125rem; - margin: 0; -} - -.c1 { - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - padding: 0.9375rem 0; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - font-weight: 600; - text-align: center; - color: ; - margin: 0; -} - -.c4 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: auto; - -ms-flex-item-align: auto; - align-self: auto; - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - padding: 0.9375rem 0; - width: 6.25rem; - max-width: 6.25rem; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - background-color: ; - max-height: 3.3125rem; - min-height: 3.3125rem; - padding: 0 1.125rem; - line-height: 1.5625rem; -} - -.c3 { - border-style: none; - width: 5.4375rem; - height: 1.5625rem; -} - -.c6 { - padding-left: 5px; -} - -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - text-transform: uppercase; - color: ; - font-size: 1.8125rem; - margin: 0; -} - -.c0 { - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - padding: 0.9375rem 0; -} - -.c2 { - border-style: none; - width: 5.4375rem; - height: 1.5625rem; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - text-transform: uppercase; - color: ; - font-size: 1.8125rem; - margin: 0; -} - -.c1 { - border-style: none; - width: 5.4375rem; - height: 1.5625rem; -} - -

    - .c0 { - border-style: none; - width: 5.4375rem; - height: 1.5625rem; -} - - - .c0 { - border-style: none; - width: 5.4375rem; - height: 1.5625rem; -} - - - -

    -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - font-weight: 600; - text-align: center; - color: ; - margin: 0; -} - -.c0 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: auto; - -ms-flex-item-align: auto; - align-self: auto; - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - padding: 0.9375rem 0; - width: 6.25rem; - max-width: 6.25rem; -} - -.c2 { - padding-left: 5px; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - font-weight: 600; - text-align: center; - color: ; - margin: 0; -} - -.c1 { - padding-left: 5px; -} - -

    - - - icon: data center - - - - - - - - - - .c0 { - padding-left: 5px; -} - - -

    -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - font-weight: 600; - text-align: center; - color: ; - margin: 0; -} - -.c0 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: auto; - -ms-flex-item-align: auto; - align-self: auto; - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - padding: 0.9375rem 0; - width: 6.25rem; - max-width: 6.25rem; -} - -.c2 { - padding-left: 5px; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - font-weight: 600; - text-align: center; - color: ; - margin: 0; -} - -.c1 { - padding-left: 5px; -} - -

    - - - Shape - - - - - - - - - - .c0 { - padding-left: 5px; -} - - -

    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/navigation/__snapshots__/menu.js.snap b/packages/cp-frontend/test/unit/components/navigation/__snapshots__/menu.js.snap deleted file mode 100644 index 07ff46da..00000000 --- a/packages/cp-frontend/test/unit/components/navigation/__snapshots__/menu.js.snap +++ /dev/null @@ -1,47 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c0 { - margin-right: auto; - margin-left: auto; - padding-top: 1.1875rem; -} - -.c1 { - list-style-type: none; - padding: 0; - margin: 0; -} - -@media only screen and (min-width:48em) { - .c0 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c0 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c0 { - width: 76rem; - } -} - -
    - .c0 { - list-style-type: none; - padding: 0; - margin: 0; -} - -
      -
    -`; diff --git a/packages/cp-frontend/test/unit/components/navigation/__snapshots__/not-found.js.snap b/packages/cp-frontend/test/unit/components/navigation/__snapshots__/not-found.js.snap deleted file mode 100644 index 85d82943..00000000 --- a/packages/cp-frontend/test/unit/components/navigation/__snapshots__/not-found.js.snap +++ /dev/null @@ -1,345 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c6 { - display: inline-block; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c3 { - font-size: 2rem; - margin: 0.625rem 0; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 2.25rem; - font-style: normal; - font-stretch: normal; - margin: 0; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - margin-right: auto; - margin-left: auto; - padding-top: 1.1875rem; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - display: block; - -webkit-flex-flow: column; - -ms-flex-flow: column; - flex-flow: column; -} - -.c1 { - margin-top: 3.75rem; -} - -.c2 { - font-weight: normal; - font-size: 2rem; -} - -.c4 { - margin-bottom: 1.875rem; - max-width: 30.625rem; -} - -@media only screen and (min-width:48em) { - .c0 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c0 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c0 { - width: 76rem; - } -} - -
    - .c5 { - display: inline-block; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2 { - font-size: 2rem; - margin: 0.625rem 0; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 2.25rem; - font-style: normal; - font-stretch: normal; - margin: 0; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - margin-top: 3.75rem; -} - -.c1 { - font-weight: normal; - font-size: 2rem; -} - -.c3 { - margin-bottom: 1.875rem; - max-width: 30.625rem; -} - -
    - .c1 { - font-size: 2rem; - margin: 0.625rem 0; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 2.25rem; - font-style: normal; - font-stretch: normal; - margin: 0; -} - -.c0 { - font-weight: normal; - font-size: 2rem; -} - -

    - I have no memory of this place -

    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - margin-bottom: 1.875rem; - max-width: 30.625rem; -} - -

    - HTTP 404: We can’t find what you are looking for. Next time, always follow your nose. -

    - .c0 { - display: inline-block; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - - - Back to dashboard - -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/navigation/__snapshots__/title.js.snap b/packages/cp-frontend/test/unit/components/navigation/__snapshots__/title.js.snap deleted file mode 100644 index c0fefdf2..00000000 --- a/packages/cp-frontend/test/unit/components/navigation/__snapshots__/title.js.snap +++ /dev/null @@ -1,20 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - margin-top: 0.125rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -<h2 - className="c0" -/> -`; diff --git a/packages/cp-frontend/test/unit/components/navigation/breadcrumb.js b/packages/cp-frontend/test/unit/components/navigation/breadcrumb.js deleted file mode 100644 index 1373b9ec..00000000 --- a/packages/cp-frontend/test/unit/components/navigation/breadcrumb.js +++ /dev/null @@ -1,21 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import Breadcrumb from '@components/navigation/breadcrumb'; -import { Router } from '../../mocks'; - -it('renders <Breadcrumb /> without throwing', () => { - const tree = renderer - .create( - <Router> - <Breadcrumb /> - </Router> - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/navigation/header.js b/packages/cp-frontend/test/unit/components/navigation/header.js deleted file mode 100644 index 37a326e5..00000000 --- a/packages/cp-frontend/test/unit/components/navigation/header.js +++ /dev/null @@ -1,21 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import Header from '@components/navigation/header'; -import { Router } from '../../mocks'; - -it('renders <Header /> without throwing', () => { - const tree = renderer - .create( - <Router> - <Header /> - </Router> - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/navigation/menu.js b/packages/cp-frontend/test/unit/components/navigation/menu.js deleted file mode 100644 index 7f9c354e..00000000 --- a/packages/cp-frontend/test/unit/components/navigation/menu.js +++ /dev/null @@ -1,21 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import Menu from '@components/navigation/menu'; -import { Router } from '../../mocks'; - -it('renders <Menu /> without throwing', () => { - const tree = renderer - .create( - <Router> - <Menu /> - </Router> - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/navigation/not-found.js b/packages/cp-frontend/test/unit/components/navigation/not-found.js deleted file mode 100644 index acb297a9..00000000 --- a/packages/cp-frontend/test/unit/components/navigation/not-found.js +++ /dev/null @@ -1,21 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import NotFound from '@components/navigation/not-found'; -import { Router } from '../../mocks'; - -it('renders <NotFound /> without throwing', () => { - const tree = renderer - .create( - <Router> - <NotFound /> - </Router> - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/navigation/title.js b/packages/cp-frontend/test/unit/components/navigation/title.js deleted file mode 100644 index a4256733..00000000 --- a/packages/cp-frontend/test/unit/components/navigation/title.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import Title from '@components/navigation/title'; - -it('renders <Title /> without throwing', () => { - const tree = renderer.create(<Title />).toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/service/__snapshots__/delete.js.snap b/packages/cp-frontend/test/unit/components/service/__snapshots__/delete.js.snap deleted file mode 100644 index 9e1d0b8c..00000000 --- a/packages/cp-frontend/test/unit/components/service/__snapshots__/delete.js.snap +++ /dev/null @@ -1,487 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders <Delete /> without throwing 1`] = ` -.c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4:focus { - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border-color: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: ; - border-color: ; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c2 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -<div> - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -<h2 - className="c0 c1" - > - Deleting a service: - <br /> - - Nginx - </h2> - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -<p - className="c0 c1" - > - Deleting a service can lead to irreversible loss of data and failures in your application. Are you sure you want to continue? - </p> - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - -<button - className="c0" - onClick={[Function]} - > - Cancel - </button> - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0 + button { - margin-left: 1.25rem; -} - -<button - className="c0" - onClick={[Function]} - > - Delete service - </button> -</div> -`; diff --git a/packages/cp-frontend/test/unit/components/service/__snapshots__/scale.js.snap b/packages/cp-frontend/test/unit/components/service/__snapshots__/scale.js.snap deleted file mode 100644 index 7f4ae258..00000000 --- a/packages/cp-frontend/test/unit/components/service/__snapshots__/scale.js.snap +++ /dev/null @@ -1,1665 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders <Scale /> without throwing 1`] = ` -.c13 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c13::-moz-focus-inner, -.c13[type='button']::-moz-focus-inner, -.c13[type='reset']::-moz-focus-inner, -.c13[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c13:-moz-focusring, -.c13[type='button']:-moz-focusring, -.c13[type='reset']:-moz-focusring, -.c13[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c13:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c13:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c13:active, -.c13:active:hover, -.c13:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c13[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c13:focus { - background-color: ; - border-color: ; -} - -.c13:hover { - background-color: ; - border-color: ; -} - -.c13:active, -.c13:active:hover, -.c13:active:focus { - background-color: ; - border-color: ; -} - -.c13 + button { - margin-left: 1.25rem; -} - -.c14 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c14::-moz-focus-inner, -.c14[type='button']::-moz-focus-inner, -.c14[type='reset']::-moz-focus-inner, -.c14[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c14:-moz-focusring, -.c14[type='button']:-moz-focusring, -.c14[type='reset']:-moz-focusring, -.c14[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c14:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c14:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c14[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c14:focus { - background-color: ; - border-color: ; -} - -.c14:hover { - background-color: ; - border-color: ; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus { - background-color: ; - border-color: ; -} - -.c14:focus { - background-color: ; - border-color: ; -} - -.c14:hover { - background-color: ; - border-color: ; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus { - background-color: ; - border-color: ; -} - -.c14 + button { - margin-left: 1.25rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c12 { - vertical-align: middle; -} - -.c10 { - vertical-align: middle; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c2 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -.c9 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c9::-moz-focus-inner, -.c9[type='button']::-moz-focus-inner, -.c9[type='reset']::-moz-focus-inner, -.c9[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c9:-moz-focusring, -.c9[type='button']:-moz-focusring, -.c9[type='reset']:-moz-focusring, -.c9[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c9 > svg { - -webkit-fill: ; - fill: ; -} - -.c9:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c9:hover { - background-color: ; - border-color: ; -} - -.c9:focus, -.c9:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c9[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c9[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c9[disabled]:focus, -.c9[disabled]:hover, -.c9[disabled]:active, -.c9[disabled]:active:hover, -.c9[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c9[disabled]:focus, -.c9[disabled]:hover, -.c9[disabled]:active, -.c9[disabled]:active:hover, -.c9[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c11 { - margin-left: 0.375rem; -} - -.c4 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - float: right; -} - -.c6 { - margin-bottom: 1.5rem; -} - -.c8 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c8:focus { - border-color: ; - outline: 0; -} - -.c7 { - width: 7.5rem; - margin: 0 0.75rem 0 0; - vertical-align: middle; -} - -<form - onSubmit={[Function]} -> - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -<h2 - className="c0 c1" - > - Scaling a service: - <br /> - Nginx - </h2> - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -<p - className="c0 c1" - > - Choose how many instances of a service you want to have running. - </p> - .c8 { - vertical-align: middle; -} - -.c6 { - vertical-align: middle; -} - -.c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5 > svg { - -webkit-fill: ; - fill: ; -} - -.c5:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border-color: ; -} - -.c5:focus, -.c5:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c5[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c5[disabled]:focus, -.c5[disabled]:hover, -.c5[disabled]:active, -.c5[disabled]:active:hover, -.c5[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c5[disabled]:focus, -.c5[disabled]:hover, -.c5[disabled]:active, -.c5[disabled]:active:hover, -.c5[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c7 { - margin-left: 0.375rem; -} - -.c0 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - float: right; -} - -.c2 { - margin-bottom: 1.5rem; -} - -.c4 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c4:focus { - border-color: ; - outline: 0; -} - -.c3 { - width: 7.5rem; - margin: 0 0.75rem 0 0; - vertical-align: middle; -} - -<fieldset - className="c0" - style={undefined} - > - .c7 { - vertical-align: middle; -} - -.c5 { - vertical-align: middle; -} - -.c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4 > svg { - -webkit-fill: ; - fill: ; -} - -.c4:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border-color: ; -} - -.c4:focus, -.c4:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c4[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c4[disabled]:focus, -.c4[disabled]:hover, -.c4[disabled]:active, -.c4[disabled]:active:hover, -.c4[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c4[disabled]:focus, -.c4[disabled]:hover, -.c4[disabled]:active, -.c4[disabled]:active:hover, -.c4[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c6 { - margin-left: 0.375rem; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - float: right; -} - -.c1 { - margin-bottom: 1.5rem; -} - -.c3 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c3:focus { - border-color: ; - outline: 0; -} - -.c2 { - width: 7.5rem; - margin: 0 0.75rem 0 0; - vertical-align: middle; -} - -<div> - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - float: right; -} - -<label - className="c0" - form="testScaleForm" - /> - .c6 { - vertical-align: middle; -} - -.c4 { - vertical-align: middle; -} - -.c3 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c3::-moz-focus-inner, -.c3[type='button']::-moz-focus-inner, -.c3[type='reset']::-moz-focus-inner, -.c3[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c3:-moz-focusring, -.c3[type='button']:-moz-focusring, -.c3[type='reset']:-moz-focusring, -.c3[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c3 > svg { - -webkit-fill: ; - fill: ; -} - -.c3:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c3:hover { - background-color: ; - border-color: ; -} - -.c3:focus, -.c3:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c3[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c3[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c3[disabled]:focus, -.c3[disabled]:hover, -.c3[disabled]:active, -.c3[disabled]:active:hover, -.c3[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c3[disabled]:focus, -.c3[disabled]:hover, -.c3[disabled]:active, -.c3[disabled]:active:hover, -.c3[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c5 { - margin-left: 0.375rem; -} - -.c0 { - margin-bottom: 1.5rem; -} - -.c2 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c2:focus { - border-color: ; - outline: 0; -} - -.c1 { - width: 7.5rem; - margin: 0 0.75rem 0 0; - vertical-align: middle; -} - -<div - className="c0" - > - .c1 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c1:focus { - border-color: ; - outline: 0; -} - -.c0 { - width: 7.5rem; - margin: 0 0.75rem 0 0; - vertical-align: middle; -} - -<input - className="c0 c1" - id="BhIyi" - name="replicas" - onBlur={[Function]} - onChange={[Function]} - onDragStart={[Function]} - onDrop={[Function]} - onFocus={[Function]} - value="" - /> - .c1 { - vertical-align: middle; -} - -.c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0 > svg { - -webkit-fill: ; - fill: ; -} - -.c0:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:focus, -.c0:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c0[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c0[disabled]:focus, -.c0[disabled]:hover, -.c0[disabled]:active, -.c0[disabled]:active:hover, -.c0[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c0[disabled]:focus, -.c0[disabled]:hover, -.c0[disabled]:active, -.c0[disabled]:active:hover, -.c0[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -<button - className="c0" - onClick={[Function]} - > - .c0 { - vertical-align: middle; -} - -<svg - className="c0" - height="2" - verticalAlign="middle" - viewBox="0 0 8 2" - width="8" - xmlns="http://www.w3.org/2000/svg" - > - <title> - icon: plus - - - - - .c2 { - vertical-align: middle; -} - -.c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1 > svg { - -webkit-fill: ; - fill: ; -} - -.c1:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:focus, -.c1:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c1[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c1[disabled]:focus, -.c1[disabled]:hover, -.c1[disabled]:active, -.c1[disabled]:active:hover, -.c1[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c1[disabled]:focus, -.c1[disabled]:hover, -.c1[disabled]:active, -.c1[disabled]:active:hover, -.c1[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c0 { - margin-left: 0.375rem; -} - - -
    -
    - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - -`; diff --git a/packages/cp-frontend/test/unit/components/service/delete.js b/packages/cp-frontend/test/unit/components/service/delete.js deleted file mode 100644 index e0d2fb81..00000000 --- a/packages/cp-frontend/test/unit/components/service/delete.js +++ /dev/null @@ -1,15 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; -import { service } from '../../mocks'; - -import Delete from '@components/service/delete'; - -it('renders without throwing', () => { - const tree = renderer.create().toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/service/scale.js b/packages/cp-frontend/test/unit/components/service/scale.js deleted file mode 100644 index 0e669c93..00000000 --- a/packages/cp-frontend/test/unit/components/service/scale.js +++ /dev/null @@ -1,24 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; -import { reduxForm } from 'redux-form'; -import { Store, service } from '../../mocks'; - -import Scale from '@components/service/scale'; - -const TestScaleForm = reduxForm({ form: 'testScaleForm' })(Scale); - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/services/__snapshots__/empty.js.snap b/packages/cp-frontend/test/unit/components/services/__snapshots__/empty.js.snap deleted file mode 100644 index ac1fb719..00000000 --- a/packages/cp-frontend/test/unit/components/services/__snapshots__/empty.js.snap +++ /dev/null @@ -1,2704 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c2 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c5 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c9 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c0 { - margin-right: auto; - margin-left: auto; - padding-top: 1.1875rem; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - display: block; - -webkit-flex-flow: column; - -ms-flex-flow: column; - flex-flow: column; -} - -.c8 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c8::-moz-focus-inner, -.c8[type='button']::-moz-focus-inner, -.c8[type='reset']::-moz-focus-inner, -.c8[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c8:-moz-focusring, -.c8[type='button']:-moz-focusring, -.c8[type='reset']:-moz-focusring, -.c8[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c8:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c8[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c8:focus { - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border-color: ; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - background-color: ; - border-color: ; -} - -.c8 + button { - margin-left: 1.25rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c4 { - box-shadow: 0 2px 0 0 rgba(0,0,0,0.05); - border: solid 1px #d8d8d8; - padding: 0.375rem 1.125rem 1.5rem; -} - -.c4 + .c4 { - margin-top: 1.5rem; -} - -@media only screen and (min-width:64em) { - .c5 { - -webkit-flex-basis: 83.33333333333334%; - -ms-flex-basis: 83.33333333333334%; - flex-basis: 83.33333333333334%; - max-width: 83.33333333333334%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c9 { - -webkit-flex-basis: 75%; - -ms-flex-basis: 75%; - flex-basis: 75%; - max-width: 75%; - display: block; - } -} - -@media only screen and (min-width:48em) { - .c0 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c0 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c0 { - width: 76rem; - } -} - -
    - .c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c4 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c8 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c7 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c7::-moz-focus-inner, -.c7[type='button']::-moz-focus-inner, -.c7[type='reset']::-moz-focus-inner, -.c7[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c7:-moz-focusring, -.c7[type='button']:-moz-focusring, -.c7[type='reset']:-moz-focusring, -.c7[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c7:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c7:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c7:active, -.c7:active:hover, -.c7:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c7[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c7:focus { - background-color: ; - border-color: ; -} - -.c7:hover { - background-color: ; - border-color: ; -} - -.c7:active, -.c7:active:hover, -.c7:active:focus { - background-color: ; - border-color: ; -} - -.c7 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c3 { - box-shadow: 0 2px 0 0 rgba(0,0,0,0.05); - border: solid 1px #d8d8d8; - padding: 0.375rem 1.125rem 1.5rem; -} - -.c3 + .c3 { - margin-top: 1.5rem; -} - -@media only screen and (min-width:64em) { - .c4 { - -webkit-flex-basis: 83.33333333333334%; - -ms-flex-basis: 83.33333333333334%; - flex-basis: 83.33333333333334%; - max-width: 83.33333333333334%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c8 { - -webkit-flex-basis: 75%; - -ms-flex-basis: 75%; - flex-basis: 75%; - max-width: 75%; - display: block; - } -} - -
    - .c2 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c4 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c8 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c7 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c7::-moz-focus-inner, -.c7[type='button']::-moz-focus-inner, -.c7[type='reset']::-moz-focus-inner, -.c7[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c7:-moz-focusring, -.c7[type='button']:-moz-focusring, -.c7[type='reset']:-moz-focusring, -.c7[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c7:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c7:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c7:active, -.c7:active:hover, -.c7:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c7[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c7:focus { - background-color: ; - border-color: ; -} - -.c7:hover { - background-color: ; - border-color: ; -} - -.c7:active, -.c7:active:hover, -.c7:active:focus { - background-color: ; - border-color: ; -} - -.c7 + button { - margin-left: 1.25rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c3 { - box-shadow: 0 2px 0 0 rgba(0,0,0,0.05); - border: solid 1px #d8d8d8; - padding: 0.375rem 1.125rem 1.5rem; -} - -.c3 + .c3 { - margin-top: 1.5rem; -} - -@media only screen and (min-width:64em) { - .c4 { - -webkit-flex-basis: 83.33333333333334%; - -ms-flex-basis: 83.33333333333334%; - flex-basis: 83.33333333333334%; - max-width: 83.33333333333334%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c8 { - -webkit-flex-basis: 75%; - -ms-flex-basis: 75%; - flex-basis: 75%; - max-width: 75%; - display: block; - } -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -

    - Services -

    - .c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c3 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c7 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c6::-moz-focus-inner, -.c6[type='button']::-moz-focus-inner, -.c6[type='reset']::-moz-focus-inner, -.c6[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c6:-moz-focusring, -.c6[type='button']:-moz-focusring, -.c6[type='reset']:-moz-focusring, -.c6[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6:focus { - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border-color: ; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-color: ; - border-color: ; -} - -.c6 + button { - margin-left: 1.25rem; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c2 { - box-shadow: 0 2px 0 0 rgba(0,0,0,0.05); - border: solid 1px #d8d8d8; - padding: 0.375rem 1.125rem 1.5rem; -} - -.c2 + .c2 { - margin-top: 1.5rem; -} - -@media only screen and (min-width:64em) { - .c3 { - -webkit-flex-basis: 83.33333333333334%; - -ms-flex-basis: 83.33333333333334%; - flex-basis: 83.33333333333334%; - max-width: 83.33333333333334%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c7 { - -webkit-flex-basis: 75%; - -ms-flex-basis: 75%; - flex-basis: 75%; - max-width: 75%; - display: block; - } -} - -
    - .c2 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c3 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c7 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c6::-moz-focus-inner, -.c6[type='button']::-moz-focus-inner, -.c6[type='reset']::-moz-focus-inner, -.c6[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c6:-moz-focusring, -.c6[type='button']:-moz-focusring, -.c6[type='reset']:-moz-focusring, -.c6[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6:focus { - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border-color: ; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-color: ; - border-color: ; -} - -.c6 + button { - margin-left: 1.25rem; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c1 { - box-shadow: 0 2px 0 0 rgba(0,0,0,0.05); - border: solid 1px #d8d8d8; - padding: 0.375rem 1.125rem 1.5rem; -} - -.c1 + .c1 { - margin-top: 1.5rem; -} - -@media only screen and (min-width:64em) { - .c3 { - -webkit-flex-basis: 83.33333333333334%; - -ms-flex-basis: 83.33333333333334%; - flex-basis: 83.33333333333334%; - max-width: 83.33333333333334%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c7 { - -webkit-flex-basis: 75%; - -ms-flex-basis: 75%; - flex-basis: 75%; - max-width: 75%; - display: block; - } -} - -
    - .c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c2 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5:focus { - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border-color: ; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: ; - border-color: ; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - box-shadow: 0 2px 0 0 rgba(0,0,0,0.05); - border: solid 1px #d8d8d8; - padding: 0.375rem 1.125rem 1.5rem; -} - -.c0 + .c0 { - margin-top: 1.5rem; -} - -@media only screen and (min-width:64em) { - .c2 { - -webkit-flex-basis: 83.33333333333334%; - -ms-flex-basis: 83.33333333333334%; - flex-basis: 83.33333333333334%; - max-width: 83.33333333333334%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4:focus { - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border-color: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: ; - border-color: ; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -@media only screen and (min-width:64em) { - .c1 { - -webkit-flex-basis: 83.33333333333334%; - -ms-flex-basis: 83.33333333333334%; - flex-basis: 83.33333333333334%; - max-width: 83.33333333333334%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c3 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c3::-moz-focus-inner, -.c3[type='button']::-moz-focus-inner, -.c3[type='reset']::-moz-focus-inner, -.c3[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c3:-moz-focusring, -.c3[type='button']:-moz-focusring, -.c3[type='reset']:-moz-focusring, -.c3[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c3:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c3:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c3[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c3:focus { - background-color: ; - border-color: ; -} - -.c3:hover { - background-color: ; - border-color: ; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: ; - border-color: ; -} - -.c3 + button { - margin-left: 1.25rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -@media only screen and (min-width:64em) { - .c0 { - -webkit-flex-basis: 83.33333333333334%; - -ms-flex-basis: 83.33333333333334%; - flex-basis: 83.33333333333334%; - max-width: 83.33333333333334%; - display: block; - } -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -

    - Import your services -

    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -

    - You can import your services from a Git repository hosting service. Learn more. -

    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    -
    -
    - .c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c2 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5:focus { - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border-color: ; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: ; - border-color: ; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - box-shadow: 0 2px 0 0 rgba(0,0,0,0.05); - border: solid 1px #d8d8d8; - padding: 0.375rem 1.125rem 1.5rem; -} - -.c0 + .c0 { - margin-top: 1.5rem; -} - -@media only screen and (min-width:64em) { - .c2 { - -webkit-flex-basis: 75%; - -ms-flex-basis: 75%; - flex-basis: 75%; - max-width: 75%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4:focus { - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border-color: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: ; - border-color: ; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -@media only screen and (min-width:64em) { - .c1 { - -webkit-flex-basis: 75%; - -ms-flex-basis: 75%; - flex-basis: 75%; - max-width: 75%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c3 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c3::-moz-focus-inner, -.c3[type='button']::-moz-focus-inner, -.c3[type='reset']::-moz-focus-inner, -.c3[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c3:-moz-focusring, -.c3[type='button']:-moz-focusring, -.c3[type='reset']:-moz-focusring, -.c3[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c3:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c3:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c3[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c3:focus { - background-color: ; - border-color: ; -} - -.c3:hover { - background-color: ; - border-color: ; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: ; - border-color: ; -} - -.c3 + button { - margin-left: 1.25rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -@media only screen and (min-width:64em) { - .c0 { - -webkit-flex-basis: 75%; - -ms-flex-basis: 75%; - flex-basis: 75%; - max-width: 75%; - display: block; - } -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; -} - -

    - Alternatively, you can upload or edit manifest file. -

    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -

    - Manifest is a file describing your services. It is similar to Docker Compose file. You can upload a file from you local machine or edit it manually. Learn more. -

    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    -
    -
    -
    -
    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/services/__snapshots__/list-item.js.snap b/packages/cp-frontend/test/unit/components/services/__snapshots__/list-item.js.snap deleted file mode 100644 index 9c195b91..00000000 --- a/packages/cp-frontend/test/unit/components/services/__snapshots__/list-item.js.snap +++ /dev/null @@ -1,2683 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c7 { - color: ; - color: ; - text-decoration: none; -} - -.c15 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - border-radius: 0; -} - -.c15::-moz-focus-inner, -.c15[type='button']::-moz-focus-inner, -.c15[type='reset']::-moz-focus-inner, -.c15[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c15:-moz-focusring, -.c15[type='button']:-moz-focusring, -.c15[type='reset']:-moz-focusring, -.c15[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c15:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c15:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c15:active, -.c15:active:hover, -.c15:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c15[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c15 + button { - margin-left: 1.25rem; -} - -.c4 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - color: ; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c22 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c8 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c21 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - padding-bottom: 0.75rem; -} - -.c9 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; -} - -.c3 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; - min-height: auto; - height: 3rem; - margin-bottom: 1rem; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.1); -} - -.c2 { - position: absolute; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - background-color: ; - border: solid 0.0625rem; - box-shadow: none; - width: calc(100% + 0.125rem); - margin: -0.0625rem -0.0625rem 0 -0.0625rem; -} - -.c19 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - margin: 0; - height: auto; - padding-top: 0; - min-width: auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; -} - -.c13 { - display: block; - -webkit-flex: 0 0 2.9375rem; - -ms-flex: 0 0 2.9375rem; - flex: 0 0 2.9375rem; - border-left: 0.0625rem solid; - box-sizing: border-box; - border-left-color: ; -} - -.c14 { - position: relative; - border-width: 0; - box-shadow: none; - width: 100%; - min-width: 2.875rem !important; - height: 7.75rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - overflow-x: visible; - overflow-y: visible; - height: 2.875rem; -} - -.c14:focus { - border-width: 0; -} - -.c14:hover { - border-width: 0; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus { - border-width: 0; -} - -.c16 { - position: absolute; - left: 50%; - top: 35%; -} - -.c17 { - margin: 0 0 0.125rem -0.125rem; - border-radius: 50%; - background-color: ; - width: 0.25rem; - height: 0.25rem; -} - -.c12 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c12::first-letter { - text-transform: capitalize; -} - -.c11 { - position: absolute; -} - -.c11 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c10 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -.c23 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c24 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c1 { - position: relative; -} - -.c5 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: left; - -webkit-justify-content: left; - -ms-flex-pack: left; - justify-content: left; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c6 { - color: ; -} - -.c18 { - height: 7.5rem; -} - -.c20 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c25 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c6 { - color: ; - color: ; - text-decoration: none; -} - -.c14 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - border-radius: 0; -} - -.c14::-moz-focus-inner, -.c14[type='button']::-moz-focus-inner, -.c14[type='reset']::-moz-focus-inner, -.c14[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c14:-moz-focusring, -.c14[type='button']:-moz-focusring, -.c14[type='reset']:-moz-focusring, -.c14[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c14:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c14:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c14[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c14 + button { - margin-left: 1.25rem; -} - -.c3 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - color: ; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c8 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c2 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; - min-height: auto; - height: 3rem; - margin-bottom: 1rem; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.1); -} - -.c1 { - position: absolute; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - background-color: ; - border: solid 0.0625rem; - box-shadow: none; - width: calc(100% + 0.125rem); - margin: -0.0625rem -0.0625rem 0 -0.0625rem; -} - -.c12 { - display: block; - -webkit-flex: 0 0 2.9375rem; - -ms-flex: 0 0 2.9375rem; - flex: 0 0 2.9375rem; - border-left: 0.0625rem solid; - box-sizing: border-box; - border-left-color: ; -} - -.c13 { - position: relative; - border-width: 0; - box-shadow: none; - width: 100%; - min-width: 2.875rem !important; - height: 7.75rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - overflow-x: visible; - overflow-y: visible; - height: 2.875rem; -} - -.c13:focus { - border-width: 0; -} - -.c13:hover { - border-width: 0; -} - -.c13:active, -.c13:active:hover, -.c13:active:focus { - border-width: 0; -} - -.c15 { - position: absolute; - left: 50%; - top: 35%; -} - -.c16 { - margin: 0 0 0.125rem -0.125rem; - border-radius: 50%; - background-color: ; - width: 0.25rem; - height: 0.25rem; -} - -.c11 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c11::first-letter { - text-transform: capitalize; -} - -.c10 { - position: absolute; -} - -.c10 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c9 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -.c0 { - position: relative; -} - -.c4 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: left; - -webkit-justify-content: left; - -ms-flex-pack: left; - justify-content: left; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c5 { - color: ; -} - -
    - .c3 { - color: ; - color: ; - text-decoration: none; -} - -.c0 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - color: ; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: left; - -webkit-justify-content: left; - -ms-flex-pack: left; - justify-content: left; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c2 { - color: ; -} - -
    - .c2 { - color: ; - color: ; - text-decoration: none; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: left; - -webkit-justify-content: left; - -ms-flex-pack: left; - justify-content: left; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c1 { - color: ; -} - -
    - .c1 { - color: ; - color: ; - text-decoration: none; -} - -.c0 { - color: ; -} - - - Nginx - -
    -
    - .c1 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - color: ; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c2 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c5::first-letter { - text-transform: capitalize; -} - -.c4 { - position: absolute; -} - -.c4 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c3 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c0 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c3::first-letter { - text-transform: capitalize; -} - -.c2 { - position: absolute; -} - -.c2 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c1 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c2::first-letter { - text-transform: capitalize; -} - -.c1 { - position: absolute; -} - -.c1 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c0 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c0 { - position: absolute; -} - -.c0 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -
    - - - icon: instances - - - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c0::first-letter { - text-transform: capitalize; -} - - -
    -
    -
    - .c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - border-radius: 0; -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c0 { - display: block; - -webkit-flex: 0 0 2.9375rem; - -ms-flex: 0 0 2.9375rem; - flex: 0 0 2.9375rem; - border-left: 0.0625rem solid; - box-sizing: border-box; - border-left-color: ; -} - -.c1 { - position: relative; - border-width: 0; - box-shadow: none; - width: 100%; - min-width: 2.875rem !important; - height: 7.75rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - overflow-x: visible; - overflow-y: visible; - height: 2.875rem; -} - -.c1:focus { - border-width: 0; -} - -.c1:hover { - border-width: 0; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - border-width: 0; -} - -.c3 { - position: absolute; - left: 50%; - top: 35%; -} - -.c4 { - margin: 0 0 0.125rem -0.125rem; - border-radius: 50%; - background-color: ; - width: 0.25rem; - height: 0.25rem; -} - - -
    - .c4 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - padding-bottom: 0.75rem; -} - -.c5 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - margin: 0; - height: auto; - padding-top: 0; - min-width: auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; -} - -.c6 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c0 { - height: 7.5rem; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c8 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c2 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - padding-bottom: 0.75rem; -} - -.c3 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c4 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c6 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c0 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c1 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c3 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c0 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -

    - 1 - instance - running -

    -
    - .c0 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    -
    -
    -
    -
    -`; - -exports[`renders child without throwing 1`] = ` -.c5 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c8 { - display: inline-block; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - padding-bottom: 0.75rem; -} - -.c6 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; - box-shadow: none; -} - -.c2 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - margin: 0; - height: auto; - padding-top: 0; - min-width: auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; -} - -.c9 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c7 { - padding: 0; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c1 { - height: 7.5rem; -} - -.c3 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c11 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c4 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c7 { - display: inline-block; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - padding-bottom: 0.75rem; -} - -.c5 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - margin: 0; - height: auto; - padding-top: 0; - min-width: auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; -} - -.c8 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c9 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c6 { - padding: 0; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c0 { - height: 7.5rem; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c10 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c2 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c5 { - display: inline-block; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - padding-bottom: 0.75rem; -} - -.c3 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c6 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c4 { - padding: 0; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c8 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c2 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c3 { - display: inline-block; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - -.c0 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c4 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c1 { - padding: 0; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c6 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c1 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c2 { - display: inline-block; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - -.c0 { - padding: 0; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -
    - .c0 { - display: inline-block; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - - - Nginx - -
    - .c0 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -

    - 1 - instance - running -

    -
    - .c0 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    -
    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/components/services/__snapshots__/quick-actions.js.snap b/packages/cp-frontend/test/unit/components/services/__snapshots__/quick-actions.js.snap deleted file mode 100644 index 0c5bfc4c..00000000 --- a/packages/cp-frontend/test/unit/components/services/__snapshots__/quick-actions.js.snap +++ /dev/null @@ -1,3 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = `null`; diff --git a/packages/cp-frontend/test/unit/components/services/empty.js b/packages/cp-frontend/test/unit/components/services/empty.js deleted file mode 100644 index b949a4c7..00000000 --- a/packages/cp-frontend/test/unit/components/services/empty.js +++ /dev/null @@ -1,21 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import EmptyServices from '@components/services/empty.js'; -import { Router } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/services/list-item.js b/packages/cp-frontend/test/unit/components/services/list-item.js deleted file mode 100644 index 485d7651..00000000 --- a/packages/cp-frontend/test/unit/components/services/list-item.js +++ /dev/null @@ -1,28 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import ServiceListItem from '@components/services/list-item'; -import { Router, service } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); - -it('renders child without throwing', () => { - const tree = renderer - .create() - .toJSON(); - expect(tree).toMatchSnapshot(); -}); \ No newline at end of file diff --git a/packages/cp-frontend/test/unit/components/services/quick-actions.js b/packages/cp-frontend/test/unit/components/services/quick-actions.js deleted file mode 100644 index b80acd89..00000000 --- a/packages/cp-frontend/test/unit/components/services/quick-actions.js +++ /dev/null @@ -1,21 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import ServicesQuickActions from '@components/services/quick-actions.js'; -import { Router, service } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/components/services/status.js b/packages/cp-frontend/test/unit/components/services/status.js deleted file mode 100644 index d880033c..00000000 --- a/packages/cp-frontend/test/unit/components/services/status.js +++ /dev/null @@ -1,17 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import ServiceStatus from '@components/services/status.js'; -import { service } from '../../mocks'; - -xit('renders without throwing', () => { - const tree = renderer - .create() - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/deployment-group/__snapshots__/delete.js.snap b/packages/cp-frontend/test/unit/containers/deployment-group/__snapshots__/delete.js.snap deleted file mode 100644 index 22165d4d..00000000 --- a/packages/cp-frontend/test/unit/containers/deployment-group/__snapshots__/delete.js.snap +++ /dev/null @@ -1,1171 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c9 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c9::-moz-focus-inner, -.c9[type='button']::-moz-focus-inner, -.c9[type='reset']::-moz-focus-inner, -.c9[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c9:-moz-focusring, -.c9[type='button']:-moz-focusring, -.c9[type='reset']:-moz-focusring, -.c9[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c9:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c9:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c9[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c9:focus { - background-color: ; - border-color: ; -} - -.c9:hover { - background-color: ; - border-color: ; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus { - background-color: ; - border-color: ; -} - -.c9 + button { - margin-left: 1.25rem; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c8 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c3 { - background-color: #FFFFFF; - padding: 0.75rem; - min-width: auto; - border: none; - box-shadow: none; -} - -.c3:hover, -.c3:focus, -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - box-shadow: none; -} - -.c0 { - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - background-color: rgba(250,250,250,0.5); - z-index: 100; -} - -.c1 { - position: absolute; - left: 50%; - top: 33.33%; - padding: 2.25rem 2.25rem 2.25rem 2.25rem; - background-color: ; - box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1); - width: 28.75rem; - margin: 0 auto 0 -14.375rem; - z-index: 101; -} - -.c2 { - position: absolute; - right: 0.375rem; - top: 0.1875rem; -} - -.c5 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c7 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -
    - .c3 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c3::-moz-focus-inner, -.c3[type='button']::-moz-focus-inner, -.c3[type='reset']::-moz-focus-inner, -.c3[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c3:-moz-focusring, -.c3[type='button']:-moz-focusring, -.c3[type='reset']:-moz-focusring, -.c3[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c3:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c3:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c3[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c3 + button { - margin-left: 1.25rem; -} - -.c8 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c8::-moz-focus-inner, -.c8[type='button']::-moz-focus-inner, -.c8[type='reset']::-moz-focus-inner, -.c8[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c8:-moz-focusring, -.c8[type='button']:-moz-focusring, -.c8[type='reset']:-moz-focusring, -.c8[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c8:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c8[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c8:focus { - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border-color: ; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - background-color: ; - border-color: ; -} - -.c8 + button { - margin-left: 1.25rem; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c2 { - background-color: #FFFFFF; - padding: 0.75rem; - min-width: auto; - border: none; - box-shadow: none; -} - -.c2:hover, -.c2:focus, -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-color: #FFFFFF; - border: none; - box-shadow: none; -} - -.c0 { - position: absolute; - left: 50%; - top: 33.33%; - padding: 2.25rem 2.25rem 2.25rem 2.25rem; - background-color: ; - box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1); - width: 28.75rem; - margin: 0 auto 0 -14.375rem; - z-index: 101; -} - -.c1 { - position: absolute; - right: 0.375rem; - top: 0.1875rem; -} - -.c4 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c6 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -
    - .c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c1 { - background-color: #FFFFFF; - padding: 0.75rem; - min-width: auto; - border: none; - box-shadow: none; -} - -.c1:hover, -.c1:focus, -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: #FFFFFF; - border: none; - box-shadow: none; -} - -.c0 { - position: absolute; - right: 0.375rem; - top: 0.1875rem; -} - - - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4:focus { - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border-color: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: ; - border-color: ; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c2 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -

    - Deleting a deployment group: -
    - - Wordpress Blog Example -

    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -

    - Deleting a deployment group will also remove all of the services and instances associated with that deployment group. Are you sure you want to continue? -

    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/deployment-group/delete.js b/packages/cp-frontend/test/unit/containers/deployment-group/delete.js deleted file mode 100644 index ad30db92..00000000 --- a/packages/cp-frontend/test/unit/containers/deployment-group/delete.js +++ /dev/null @@ -1,26 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { DeploymentGroupDelete } from '@containers/deployment-group/delete'; -import { Router, Store, deploymentGroup } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - {}} - /> - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/deployment-groups/__snapshots__/create.js.snap b/packages/cp-frontend/test/unit/containers/deployment-groups/__snapshots__/create.js.snap deleted file mode 100644 index 0b479371..00000000 --- a/packages/cp-frontend/test/unit/containers/deployment-groups/__snapshots__/create.js.snap +++ /dev/null @@ -1,3060 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c8 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c8::-moz-focus-inner, -.c8[type='button']::-moz-focus-inner, -.c8[type='reset']::-moz-focus-inner, -.c8[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c8:-moz-focusring, -.c8[type='button']:-moz-focusring, -.c8[type='reset']:-moz-focusring, -.c8[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c8:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c8[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c8 + button { - margin-left: 1.25rem; -} - -.c3 { - float: left; - background-color: ; -} - -.c6 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c12 { - -webkit-fill: none; - fill: none; -} - -.c5 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c11 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c7 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c7:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c7:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c7:active, -.c7:active:hover, -.c7:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c10 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c14 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c15 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c9 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -.c13 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -.c16 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -.c2 { - display: table; - list-style-type: none; - padding: 0; -} - -.c0 { - margin-right: auto; - margin-left: auto; - padding-top: 1.1875rem; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - display: block; - -webkit-flex-flow: column; - -ms-flex-flow: column; - flex-flow: column; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - margin-top: 0.125rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -@media only screen and (min-width:48em) { - .c0 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c0 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c0 { - width: 76rem; - } -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - margin-top: 0.125rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -

    - Creating deployment group -

    - .c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c6::-moz-focus-inner, -.c6[type='button']::-moz-focus-inner, -.c6[type='reset']::-moz-focus-inner, -.c6[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c6:-moz-focusring, -.c6[type='button']:-moz-focusring, -.c6[type='reset']:-moz-focusring, -.c6[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c6:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6 + button { - margin-left: 1.25rem; -} - -.c1 { - float: left; - background-color: ; -} - -.c4 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c10 { - -webkit-fill: none; - fill: none; -} - -.c3 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c9 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c5 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c5:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c8 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c12 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c13 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c7 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -.c11 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -.c14 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -.c0 { - display: table; - list-style-type: none; - padding: 0; -} - -
      - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 10; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; - padding-left: 0.8125rem; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 0.0625rem solid; - background: ; -} - - - .c0 { - -webkit-fill: none; - fill: none; - -webkit-fill: ; - fill: ; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - border-color: ; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 9; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 8; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; - border-right: none; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; -} - - -
      -
    • - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c0 { - float: left; - background-color: ; -} - -.c3 { - -webkit-fill: none; - fill: none; -} - -.c2 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c4 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c4:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c6 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
    • - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c2 { - -webkit-fill: none; - fill: none; -} - -.c1 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c3:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - z-index: 7; - padding-left: 2.5rem; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-right: 0.0625rem solid; -} - -.c5 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - -
      - .c1 { - -webkit-fill: none; - fill: none; -} - -.c0 { - display: inline-block; - border-radius: 50%; - width: 1.125rem; - height: 1.125rem; - background: inherit; - border: 0.0625rem solid; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - - - .c0 { - -webkit-fill: none; - fill: none; -} - - - - tick - - - - - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - padding: 0.75rem 1.125rem 0.75rem 0.75rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; - line-height: 1.6; - cursor: default; -} - -.c0:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:hover { - background-color: #FFFFFF; - border: none; - color: #464646; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - border: none; - color: #464646; -} - - - .c0 { - position: absolute; - top: 0; - right: -1.6875rem; - border: solid; - border-width: 0 0.0625rem 0.0625rem 0; - padding: 1.06875rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.4rem 0.625rem 0.4rem 0.625rem; - display: none; -} - - -
      -
    • -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/deployment-groups/__snapshots__/import.js.snap b/packages/cp-frontend/test/unit/containers/deployment-groups/__snapshots__/import.js.snap deleted file mode 100644 index ab8ac3c6..00000000 --- a/packages/cp-frontend/test/unit/containers/deployment-groups/__snapshots__/import.js.snap +++ /dev/null @@ -1,343 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c0 { - margin-right: auto; - margin-left: auto; - padding-top: 1.1875rem; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - display: block; - -webkit-flex-flow: column; - -ms-flex-flow: column; - flex-flow: column; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c4 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c5 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - margin-top: 0.125rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -@media only screen and (min-width:48em) { - .c0 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c0 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c0 { - width: 76rem; - } -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - margin-top: 0.125rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -

    - Importing deployment group -

    - .c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c3 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -
    - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - -.c1 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - -.c2 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 0.5s; - animation-delay: 0.5s; -} - - - .c0 { - -webkit-fill: ; - fill: ; - stroke: ; - -webkit-animation: iCqDak 1.5s ease-out 0s infinite; - animation: iCqDak 1.5s ease-out 0s infinite; - -webkit-animation-delay: 1s; - animation-delay: 1s; -} - - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - text-align: center; - margin-bottom: 0; -} - -

    - Loading... -

    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/deployment-groups/__snapshots__/list.js.snap b/packages/cp-frontend/test/unit/containers/deployment-groups/__snapshots__/list.js.snap deleted file mode 100644 index a5c6f302..00000000 --- a/packages/cp-frontend/test/unit/containers/deployment-groups/__snapshots__/list.js.snap +++ /dev/null @@ -1,1566 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c3 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c0 { - margin-right: auto; - margin-left: auto; - padding-top: 1.1875rem; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - display: block; - -webkit-flex-flow: column; - -ms-flex-flow: column; - flex-flow: column; -} - -.c8 { - display: inline-block; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c8 > svg { - -webkit-fill: ; - fill: ; -} - -.c8:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border-color: ; -} - -.c8:focus, -.c8:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c8[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c8[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c8[disabled]:focus, -.c8[disabled]:hover, -.c8[disabled]:active, -.c8[disabled]:active:hover, -.c8[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c8[disabled]:focus, -.c8[disabled]:hover, -.c8[disabled]:active, -.c8[disabled]:active:hover, -.c8[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - margin-top: 0.125rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c2 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin-top: -0.4375rem; -} - -.c4 { - position: relative; - text-decoration: none; - color: ; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - border: solid 0.0625rem; - margin-top: 1.25rem; - margin-bottom: 0; - padding: 1.125rem; - min-height: 16.125rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -.c4:last-child { - margin-bottom: 1.25rem; -} - -.c9 { - position: relative; - text-decoration: none; - color: ; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - border: solid 0.0625rem; - margin-top: 1.25rem; - margin-bottom: 0; - padding: 1.125rem; - min-height: 16.125rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - background-color: ; -} - -.c9:last-child { - margin-bottom: 1.25rem; -} - -.c9:hover { - background-color: ; -} - -.c11 { - border: solid 0.0625rem; - border-radius: 50%; - width: 3rem; - height: 3rem; - line-height: 3rem; - font-size: 1.5rem; - text-align: center; - margin-bottom: 1.25rem; -} - -.c12 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; - font-weight: 600; - text-align: center; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 0.625rem; - font-weight: 600; -} - -.c5 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - text-decoration: none; - color: ; -} - -.c10 { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; -} - -.c7 { - position: absolute; - right: 0; - bottom: 0; - border: none; -} - -.c7:hover, -.c7:focus, -.c7:active, -.c7:active:hover, -.c7:active:focus { - background-color: ; -} - -.c7:focus > svg, -.c7:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c7:active > svg, -.c7:active:hover > svg, -.c7:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -@media only screen and (min-width:0em) { - .c3 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -@media only screen and (min-width:48em) { - .c3 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c3 { - -webkit-flex-basis: 25%; - -ms-flex-basis: 25%; - flex-basis: 25%; - max-width: 25%; - display: block; - } -} - -@media only screen and (min-width:75em) { - .c3 { - -webkit-flex-basis: 25%; - -ms-flex-basis: 25%; - flex-basis: 25%; - max-width: 25%; - display: block; - } -} - -@media only screen and (min-width:48em) { - .c0 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c0 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c0 { - width: 76rem; - } -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - margin-top: 0.125rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -

    - Deployment groups -

    - .c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c6 { - display: inline-block; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c6 > svg { - -webkit-fill: ; - fill: ; -} - -.c6:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c6:hover { - background-color: ; - border-color: ; -} - -.c6:focus, -.c6:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c6:active, -.c6:active:hover, -.c6:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c6[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c6[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c6[disabled]:focus, -.c6[disabled]:hover, -.c6[disabled]:active, -.c6[disabled]:active:hover, -.c6[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c6[disabled]:focus, -.c6[disabled]:hover, -.c6[disabled]:active, -.c6[disabled]:active:hover, -.c6[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin-top: -0.4375rem; -} - -.c2 { - position: relative; - text-decoration: none; - color: ; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - border: solid 0.0625rem; - margin-top: 1.25rem; - margin-bottom: 0; - padding: 1.125rem; - min-height: 16.125rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -.c2:last-child { - margin-bottom: 1.25rem; -} - -.c7 { - position: relative; - text-decoration: none; - color: ; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - border: solid 0.0625rem; - margin-top: 1.25rem; - margin-bottom: 0; - padding: 1.125rem; - min-height: 16.125rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - background-color: ; -} - -.c7:last-child { - margin-bottom: 1.25rem; -} - -.c7:hover { - background-color: ; -} - -.c9 { - border: solid 0.0625rem; - border-radius: 50%; - width: 3rem; - height: 3rem; - line-height: 3rem; - font-size: 1.5rem; - text-align: center; - margin-bottom: 1.25rem; -} - -.c10 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; - font-weight: 600; - text-align: center; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 0.625rem; - font-weight: 600; -} - -.c3 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - text-decoration: none; - color: ; -} - -.c8 { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; -} - -.c5 { - position: absolute; - right: 0; - bottom: 0; - border: none; -} - -.c5:hover, -.c5:focus, -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-color: ; -} - -.c5:focus > svg, -.c5:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c5:active > svg, -.c5:active:hover > svg, -.c5:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -@media only screen and (min-width:0em) { - .c1 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -@media only screen and (min-width:48em) { - .c1 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c1 { - -webkit-flex-basis: 25%; - -ms-flex-basis: 25%; - flex-basis: 25%; - max-width: 25%; - display: block; - } -} - -@media only screen and (min-width:75em) { - .c1 { - -webkit-flex-basis: 25%; - -ms-flex-basis: 25%; - flex-basis: 25%; - max-width: 25%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c5 { - display: inline-block; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c5 > svg { - -webkit-fill: ; - fill: ; -} - -.c5:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border-color: ; -} - -.c5:focus, -.c5:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c5[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c5[disabled]:focus, -.c5[disabled]:hover, -.c5[disabled]:active, -.c5[disabled]:active:hover, -.c5[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c5[disabled]:focus, -.c5[disabled]:hover, -.c5[disabled]:active, -.c5[disabled]:active:hover, -.c5[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c1 { - position: relative; - text-decoration: none; - color: ; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - border: solid 0.0625rem; - margin-top: 1.25rem; - margin-bottom: 0; - padding: 1.125rem; - min-height: 16.125rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -.c1:last-child { - margin-bottom: 1.25rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 0.625rem; - font-weight: 600; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - text-decoration: none; - color: ; -} - -.c4 { - position: absolute; - right: 0; - bottom: 0; - border: none; -} - -.c4:hover, -.c4:focus, -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: ; -} - -.c4:focus > svg, -.c4:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c4:active > svg, -.c4:active:hover > svg, -.c4:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -@media only screen and (min-width:0em) { - .c0 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -@media only screen and (min-width:48em) { - .c0 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c0 { - -webkit-flex-basis: 25%; - -ms-flex-basis: 25%; - flex-basis: 25%; - max-width: 25%; - display: block; - } -} - -@media only screen and (min-width:75em) { - .c0 { - -webkit-flex-basis: 25%; - -ms-flex-basis: 25%; - flex-basis: 25%; - max-width: 25%; - display: block; - } -} - -
    - .c4 { - display: inline-block; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c4 > svg { - -webkit-fill: ; - fill: ; -} - -.c4:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border-color: ; -} - -.c4:focus, -.c4:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c4[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c4[disabled]:focus, -.c4[disabled]:hover, -.c4[disabled]:active, -.c4[disabled]:active:hover, -.c4[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c4[disabled]:focus, -.c4[disabled]:hover, -.c4[disabled]:active, -.c4[disabled]:active:hover, -.c4[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c0 { - position: relative; - text-decoration: none; - color: ; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - border: solid 0.0625rem; - margin-top: 1.25rem; - margin-bottom: 0; - padding: 1.125rem; - min-height: 16.125rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -.c0:last-child { - margin-bottom: 1.25rem; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 0.625rem; - font-weight: 600; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - text-decoration: none; - color: ; -} - -.c3 { - position: absolute; - right: 0; - bottom: 0; - border: none; -} - -.c3:hover, -.c3:focus, -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: ; -} - -.c3:focus > svg, -.c3:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c3:active > svg, -.c3:active:hover > svg, -.c3:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 0.625rem; - font-weight: 600; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - text-decoration: none; - color: ; -} - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 0.9375rem; - margin-top: 0.625rem; - font-weight: 600; -} - -

    - Wordpress Blog Example -

    -
    - .c1 { - display: inline-block; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c1 > svg { - -webkit-fill: ; - fill: ; -} - -.c1:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border-color: ; -} - -.c1:focus, -.c1:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c1[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c1[disabled]:focus, -.c1[disabled]:hover, -.c1[disabled]:active, -.c1[disabled]:active:hover, -.c1[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c1[disabled]:focus, -.c1[disabled]:hover, -.c1[disabled]:active, -.c1[disabled]:active:hover, -.c1[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c0 { - position: absolute; - right: 0; - bottom: 0; - border: none; -} - -.c0:hover, -.c0:focus, -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; -} - -.c0:focus > svg, -.c0:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c0:active > svg, -.c0:active:hover > svg, -.c0:active:focus > svg { - -webkit-fill: ; - fill: ; -} - - - - - icon: delete - - - - -
    -
    - .c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c1 { - position: relative; - text-decoration: none; - color: ; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - border: solid 0.0625rem; - margin-top: 1.25rem; - margin-bottom: 0; - padding: 1.125rem; - min-height: 16.125rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - background-color: ; -} - -.c1:last-child { - margin-bottom: 1.25rem; -} - -.c1:hover { - background-color: ; -} - -.c4 { - border: solid 0.0625rem; - border-radius: 50%; - width: 3rem; - height: 3rem; - line-height: 3rem; - font-size: 1.5rem; - text-align: center; - margin-bottom: 1.25rem; -} - -.c5 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; - font-weight: 600; - text-align: center; -} - -.c3 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - text-decoration: none; - color: ; -} - -.c2 { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; -} - -@media only screen and (min-width:0em) { - .c0 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -@media only screen and (min-width:48em) { - .c0 { - -webkit-flex-basis: 33.333333333333336%; - -ms-flex-basis: 33.333333333333336%; - flex-basis: 33.333333333333336%; - max-width: 33.333333333333336%; - display: block; - } -} - -@media only screen and (min-width:64em) { - .c0 { - -webkit-flex-basis: 25%; - -ms-flex-basis: 25%; - flex-basis: 25%; - max-width: 25%; - display: block; - } -} - -@media only screen and (min-width:75em) { - .c0 { - -webkit-flex-basis: 25%; - -ms-flex-basis: 25%; - flex-basis: 25%; - max-width: 25%; - display: block; - } -} - -
    - .c0 { - position: relative; - text-decoration: none; - color: ; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - border: solid 0.0625rem; - margin-top: 1.25rem; - margin-bottom: 0; - padding: 1.125rem; - min-height: 16.125rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - background-color: ; -} - -.c0:last-child { - margin-bottom: 1.25rem; -} - -.c0:hover { - background-color: ; -} - -.c3 { - border: solid 0.0625rem; - border-radius: 50%; - width: 3rem; - height: 3rem; - line-height: 3rem; - font-size: 1.5rem; - text-align: center; - margin-bottom: 1.25rem; -} - -.c4 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; - font-weight: 600; - text-align: center; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - text-decoration: none; - color: ; -} - -.c1 { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; -} - -
    - .c2 { - border: solid 0.0625rem; - border-radius: 50%; - width: 3rem; - height: 3rem; - line-height: 3rem; - font-size: 1.5rem; - text-align: center; - margin-bottom: 1.25rem; -} - -.c3 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; - font-weight: 600; - text-align: center; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - text-decoration: none; - color: ; -} - -.c0 { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; -} - - - .c0 { - border: solid 0.0625rem; - border-radius: 50%; - width: 3rem; - height: 3rem; - line-height: 3rem; - font-size: 1.5rem; - text-align: center; - margin-bottom: 1.25rem; -} - -
    - + -
    - .c0 { - font-size: 80%; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.125rem; - font-size: 0.875rem; - font-weight: 600; - text-align: center; -} - - - Create new deployment group - -
    -
    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/deployment-groups/create.js b/packages/cp-frontend/test/unit/containers/deployment-groups/create.js deleted file mode 100644 index ccae0499..00000000 --- a/packages/cp-frontend/test/unit/containers/deployment-groups/create.js +++ /dev/null @@ -1,30 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import DeploymentGroupCreate from '@containers/deployment-groups/create.js'; -import { Router, Store } from '../../mocks'; - -it('renders without throwing', () => { - const props = { - match: { - params: { - stage: '' - } - } - }; - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/deployment-groups/import.js b/packages/cp-frontend/test/unit/containers/deployment-groups/import.js deleted file mode 100644 index 30409fa2..00000000 --- a/packages/cp-frontend/test/unit/containers/deployment-groups/import.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import DeploymentGroupImport from '@containers/deployment-groups/import.js'; -import { Router, Store } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/deployment-groups/list.js b/packages/cp-frontend/test/unit/containers/deployment-groups/list.js deleted file mode 100644 index 39247bc2..00000000 --- a/packages/cp-frontend/test/unit/containers/deployment-groups/list.js +++ /dev/null @@ -1,26 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { DeploymentGroupList } from '@containers/deployment-groups/list.js'; -import { Router, Store, deploymentGroups } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/instances/__snapshots__/tooltip.js.snap b/packages/cp-frontend/test/unit/containers/instances/__snapshots__/tooltip.js.snap deleted file mode 100644 index 551ca2df..00000000 --- a/packages/cp-frontend/test/unit/containers/instances/__snapshots__/tooltip.js.snap +++ /dev/null @@ -1,214 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c1 { - position: absolute; - top: auto; - left: auto; - bottom: ; - right: auto; -} - -.c1:focus { - outline: none; -} - -.c2 { - position: relative; - display: inline-block; - top: 0.3125rem; - left: -50%; - margin: 0; - padding: 0.75rem 0; - background-color: ; - border: 0.0625rem solid; - box-shadow: 0 0.125rem 0.375rem 0.0625rem rgba(0,0,0,0.1); - border-radius: 0.25rem; - z-index: 1000; -} - -.c2:after, -.c2:before { - content: ''; - position: absolute; - bottom: 100%; - left: 50%; - height: 0; - width: 0; - border: solid transparent; -} - -.c2:after { - border-bottom-color: ; - border-width: 0.1875rem; - margin-left: -0.1875rem; -} - -.c2:before { - border-bottom-color: ; - border-width: 0.3125rem; - margin-left: -0.3125rem; -} - -.c3 { - margin: 0 1.125rem; - color: ; - white-space: nowrap; -} - -.c0 { - position: absolute; - top: 0; - left: 0; -} - -
    - .c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - position: absolute; - top: auto; - left: auto; - bottom: ; - right: auto; -} - -.c0:focus { - outline: none; -} - -.c1 { - position: relative; - display: inline-block; - top: 0.3125rem; - left: -50%; - margin: 0; - padding: 0.75rem 0; - background-color: ; - border: 0.0625rem solid; - box-shadow: 0 0.125rem 0.375rem 0.0625rem rgba(0,0,0,0.1); - border-radius: 0.25rem; - z-index: 1000; -} - -.c1:after, -.c1:before { - content: ''; - position: absolute; - bottom: 100%; - left: 50%; - height: 0; - width: 0; - border: solid transparent; -} - -.c1:after { - border-bottom-color: ; - border-width: 0.1875rem; - margin-left: -0.1875rem; -} - -.c1:before { - border-bottom-color: ; - border-width: 0.3125rem; - margin-left: -0.3125rem; -} - -.c2 { - margin: 0 1.125rem; - color: ; - white-space: nowrap; -} - -
    - .c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - position: relative; - display: inline-block; - top: 0.3125rem; - left: -50%; - margin: 0; - padding: 0.75rem 0; - background-color: ; - border: 0.0625rem solid; - box-shadow: 0 0.125rem 0.375rem 0.0625rem rgba(0,0,0,0.1); - border-radius: 0.25rem; - z-index: 1000; -} - -.c0:after, -.c0:before { - content: ''; - position: absolute; - bottom: 100%; - left: 50%; - height: 0; - width: 0; - border: solid transparent; -} - -.c0:after { - border-bottom-color: ; - border-width: 0.1875rem; - margin-left: -0.1875rem; -} - -.c0:before { - border-bottom-color: ; - border-width: 0.3125rem; - margin-left: -0.3125rem; -} - -.c1 { - margin: 0 1.125rem; - color: ; - white-space: nowrap; -} - -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - margin: 0 1.125rem; - color: ; - white-space: nowrap; -} - -

    - Your instance is operating as expected -

    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/instances/list.js b/packages/cp-frontend/test/unit/containers/instances/list.js deleted file mode 100644 index 2c5feb9c..00000000 --- a/packages/cp-frontend/test/unit/containers/instances/list.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { InstanceList } from '@containers/instances/list.js'; -import { Router, Store, instances } from '../../mocks'; - -xit('renders without throwing', () => { - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/instances/tooltip.js b/packages/cp-frontend/test/unit/containers/instances/tooltip.js deleted file mode 100644 index 323d7475..00000000 --- a/packages/cp-frontend/test/unit/containers/instances/tooltip.js +++ /dev/null @@ -1,30 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { InstancesTooltip } from '@containers/instances/tooltip.js'; -import { Router, Store, instance } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/navigation/__snapshots__/breadcrumb.js.snap b/packages/cp-frontend/test/unit/containers/navigation/__snapshots__/breadcrumb.js.snap deleted file mode 100644 index e449d34f..00000000 --- a/packages/cp-frontend/test/unit/containers/navigation/__snapshots__/breadcrumb.js.snap +++ /dev/null @@ -1,341 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c1 { - margin-right: auto; - margin-left: auto; -} - -.c3 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c2 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - font-weight: 400; - color: ; - margin: 1.25rem 0 1.125rem 0; - display: inline-block; -} - -.c5 { - border: solid; - border-width: 0 0.125rem 0.125rem 0; - display: inline-block; - padding: 0.125rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.1875rem 0.625rem 0.1875rem 0.625rem; -} - -.c0 { - border-bottom: solid 0.0625rem; -} - -@media only screen and (min-width:48em) { - .c1 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c1 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c1 { - width: 76rem; - } -} - -@media only screen and (min-width:0em) { - .c2 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -
    - .c0 { - margin-right: auto; - margin-left: auto; -} - -.c2 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - font-weight: 400; - color: ; - margin: 1.25rem 0 1.125rem 0; - display: inline-block; -} - -.c4 { - border: solid; - border-width: 0 0.125rem 0.125rem 0; - display: inline-block; - padding: 0.125rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.1875rem 0.625rem 0.1875rem 0.625rem; -} - -@media only screen and (min-width:48em) { - .c0 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c0 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c0 { - width: 76rem; - } -} - -@media only screen and (min-width:0em) { - .c1 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -
    - .c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - font-weight: 400; - color: ; - margin: 1.25rem 0 1.125rem 0; - display: inline-block; -} - -.c3 { - border: solid; - border-width: 0 0.125rem 0.125rem 0; - display: inline-block; - padding: 0.125rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.1875rem 0.625rem 0.1875rem 0.625rem; -} - -@media only screen and (min-width:0em) { - .c0 { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - max-width: 100%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - font-weight: 400; - color: ; - margin: 1.25rem 0 1.125rem 0; - display: inline-block; -} - -.c2 { - border: solid; - border-width: 0 0.125rem 0.125rem 0; - display: inline-block; - padding: 0.125rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.1875rem 0.625rem 0.1875rem 0.625rem; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - font-weight: 400; - color: ; - margin: 1.25rem 0 1.125rem 0; - display: inline-block; -} - -.c1 { - border: solid; - border-width: 0 0.125rem 0.125rem 0; - display: inline-block; - padding: 0.125rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.1875rem 0.625rem 0.1875rem 0.625rem; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - font-weight: 400; - color: ; - margin: 1.25rem 0 1.125rem 0; - display: inline-block; -} - -

    - Dashboard -

    - .c0 { - border: solid; - border-width: 0 0.125rem 0.125rem 0; - display: inline-block; - padding: 0.125rem; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - margin: 0.1875rem 0.625rem 0.1875rem 0.625rem; -} - -
    -
    -
    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/navigation/__snapshots__/header.js.snap b/packages/cp-frontend/test/unit/containers/navigation/__snapshots__/header.js.snap deleted file mode 100644 index 5cd22ce0..00000000 --- a/packages/cp-frontend/test/unit/containers/navigation/__snapshots__/header.js.snap +++ /dev/null @@ -1,359 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders
    without throwing 1`] = ` -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - text-transform: uppercase; - color: ; - font-size: 1.8125rem; - margin: 0; -} - -.c1 { - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - padding: 0.9375rem 0; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - font-weight: 600; - text-align: center; - color: ; - margin: 0; -} - -.c4 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: auto; - -ms-flex-item-align: auto; - align-self: auto; - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - padding: 0.9375rem 0; - width: 6.25rem; - max-width: 6.25rem; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: space-between; - -webkit-justify-content: space-between; - -ms-flex-pack: space-between; - justify-content: space-between; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - background-color: ; - max-height: 3.3125rem; - min-height: 3.3125rem; - padding: 0 1.125rem; - line-height: 1.5625rem; -} - -.c3 { - border-style: none; - width: 5.4375rem; - height: 1.5625rem; -} - -.c6 { - padding-left: 5px; -} - -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - text-transform: uppercase; - color: ; - font-size: 1.8125rem; - margin: 0; -} - -.c0 { - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - padding: 0.9375rem 0; -} - -.c2 { - border-style: none; - width: 5.4375rem; - height: 1.5625rem; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - text-transform: uppercase; - color: ; - font-size: 1.8125rem; - margin: 0; -} - -.c1 { - border-style: none; - width: 5.4375rem; - height: 1.5625rem; -} - -

    - .c0 { - border-style: none; - width: 5.4375rem; - height: 1.5625rem; -} - - - .c0 { - border-style: none; - width: 5.4375rem; - height: 1.5625rem; -} - - - -

    -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - font-weight: 600; - text-align: center; - color: ; - margin: 0; -} - -.c0 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: auto; - -ms-flex-item-align: auto; - align-self: auto; - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - padding: 0.9375rem 0; - width: 6.25rem; - max-width: 6.25rem; -} - -.c2 { - padding-left: 5px; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - font-weight: 600; - text-align: center; - color: ; - margin: 0; -} - -.c1 { - padding-left: 5px; -} - -

    - - - icon: data center - - - - - - - - - - .c0 { - padding-left: 5px; -} - - -

    -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - font-weight: 600; - text-align: center; - color: ; - margin: 0; -} - -.c0 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: auto; - -ms-flex-item-align: auto; - align-self: auto; - -webkit-order: 0; - -ms-flex-order: 0; - order: 0; - padding: 0.9375rem 0; - width: 6.25rem; - max-width: 6.25rem; -} - -.c2 { - padding-left: 5px; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - font-weight: 600; - text-align: center; - color: ; - margin: 0; -} - -.c1 { - padding-left: 5px; -} - -

    - - - Shape - - - - - - - - - - .c0 { - padding-left: 5px; -} - - -

    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/navigation/__snapshots__/menu.js.snap b/packages/cp-frontend/test/unit/containers/navigation/__snapshots__/menu.js.snap deleted file mode 100644 index d38170de..00000000 --- a/packages/cp-frontend/test/unit/containers/navigation/__snapshots__/menu.js.snap +++ /dev/null @@ -1,3 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = `null`; diff --git a/packages/cp-frontend/test/unit/containers/navigation/breadcrumb.js b/packages/cp-frontend/test/unit/containers/navigation/breadcrumb.js deleted file mode 100644 index b822b640..00000000 --- a/packages/cp-frontend/test/unit/containers/navigation/breadcrumb.js +++ /dev/null @@ -1,28 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { Breadcrumb } from '@containers/navigation/breadcrumb.js'; -import { Router, Store } from '../../mocks'; - -it('renders without throwing', () => { - const props = { - location: { - pathname: '' - } - }; - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/navigation/header.js b/packages/cp-frontend/test/unit/containers/navigation/header.js deleted file mode 100644 index 14be8717..00000000 --- a/packages/cp-frontend/test/unit/containers/navigation/header.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { Header } from '@containers/navigation/header.js'; -import { Router, Store } from '../../mocks'; - -it('renders
    without throwing', () => { - const tree = renderer - .create( - - -
    - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/navigation/menu.js b/packages/cp-frontend/test/unit/containers/navigation/menu.js deleted file mode 100644 index 0fa74e85..00000000 --- a/packages/cp-frontend/test/unit/containers/navigation/menu.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { Menu } from '@containers/navigation/menu.js'; -import { Router, Store } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/navigation/not-found-hoc.js b/packages/cp-frontend/test/unit/containers/navigation/not-found-hoc.js deleted file mode 100644 index b9db719c..00000000 --- a/packages/cp-frontend/test/unit/containers/navigation/not-found-hoc.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import NotFoundHoc from '@containers/navigation/not-found-hoc.js'; -import { Router, Store } from '../../mocks'; - -xit('renders without throwing', () => { - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/service/__snapshots__/delete.js.snap b/packages/cp-frontend/test/unit/containers/service/__snapshots__/delete.js.snap deleted file mode 100644 index 40b6f79c..00000000 --- a/packages/cp-frontend/test/unit/containers/service/__snapshots__/delete.js.snap +++ /dev/null @@ -1,1171 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c9 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c9::-moz-focus-inner, -.c9[type='button']::-moz-focus-inner, -.c9[type='reset']::-moz-focus-inner, -.c9[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c9:-moz-focusring, -.c9[type='button']:-moz-focusring, -.c9[type='reset']:-moz-focusring, -.c9[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c9:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c9:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c9[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c9:focus { - background-color: ; - border-color: ; -} - -.c9:hover { - background-color: ; - border-color: ; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus { - background-color: ; - border-color: ; -} - -.c9 + button { - margin-left: 1.25rem; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c8 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c3 { - background-color: #FFFFFF; - padding: 0.75rem; - min-width: auto; - border: none; - box-shadow: none; -} - -.c3:hover, -.c3:focus, -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - box-shadow: none; -} - -.c0 { - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - background-color: rgba(250,250,250,0.5); - z-index: 100; -} - -.c1 { - position: absolute; - left: 50%; - top: 33.33%; - padding: 2.25rem 2.25rem 2.25rem 2.25rem; - background-color: ; - box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1); - width: 28.75rem; - margin: 0 auto 0 -14.375rem; - z-index: 101; -} - -.c2 { - position: absolute; - right: 0.375rem; - top: 0.1875rem; -} - -.c5 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c7 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -
    - .c3 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c3::-moz-focus-inner, -.c3[type='button']::-moz-focus-inner, -.c3[type='reset']::-moz-focus-inner, -.c3[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c3:-moz-focusring, -.c3[type='button']:-moz-focusring, -.c3[type='reset']:-moz-focusring, -.c3[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c3:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c3:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c3[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c3 + button { - margin-left: 1.25rem; -} - -.c8 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c8::-moz-focus-inner, -.c8[type='button']::-moz-focus-inner, -.c8[type='reset']::-moz-focus-inner, -.c8[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c8:-moz-focusring, -.c8[type='button']:-moz-focusring, -.c8[type='reset']:-moz-focusring, -.c8[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c8:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c8[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c8:focus { - background-color: ; - border-color: ; -} - -.c8:hover { - background-color: ; - border-color: ; -} - -.c8:active, -.c8:active:hover, -.c8:active:focus { - background-color: ; - border-color: ; -} - -.c8 + button { - margin-left: 1.25rem; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c2 { - background-color: #FFFFFF; - padding: 0.75rem; - min-width: auto; - border: none; - box-shadow: none; -} - -.c2:hover, -.c2:focus, -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-color: #FFFFFF; - border: none; - box-shadow: none; -} - -.c0 { - position: absolute; - left: 50%; - top: 33.33%; - padding: 2.25rem 2.25rem 2.25rem 2.25rem; - background-color: ; - box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1); - width: 28.75rem; - margin: 0 auto 0 -14.375rem; - z-index: 101; -} - -.c1 { - position: absolute; - right: 0.375rem; - top: 0.1875rem; -} - -.c4 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c6 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -
    - .c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c1 { - background-color: #FFFFFF; - padding: 0.75rem; - min-width: auto; - border: none; - box-shadow: none; -} - -.c1:hover, -.c1:focus, -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: #FFFFFF; - border: none; - box-shadow: none; -} - -.c0 { - position: absolute; - right: 0.375rem; - top: 0.1875rem; -} - - - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4:focus { - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border-color: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: ; - border-color: ; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c2 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -

    - Deleting a service: -
    - - Nginx -

    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -

    - Deleting a service can lead to irreversible loss of data and failures in your application. Are you sure you want to continue? -

    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/service/__snapshots__/scale.js.snap b/packages/cp-frontend/test/unit/containers/service/__snapshots__/scale.js.snap deleted file mode 100644 index b18d0580..00000000 --- a/packages/cp-frontend/test/unit/containers/service/__snapshots__/scale.js.snap +++ /dev/null @@ -1,3001 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c18 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c18::-moz-focus-inner, -.c18[type='button']::-moz-focus-inner, -.c18[type='reset']::-moz-focus-inner, -.c18[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c18:-moz-focusring, -.c18[type='button']:-moz-focusring, -.c18[type='reset']:-moz-focusring, -.c18[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c18:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c18:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c18:active, -.c18:active:hover, -.c18:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c18[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c18:focus { - background-color: ; - border-color: ; -} - -.c18:hover { - background-color: ; - border-color: ; -} - -.c18:active, -.c18:active:hover, -.c18:active:focus { - background-color: ; - border-color: ; -} - -.c18 + button { - margin-left: 1.25rem; -} - -.c19 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c19::-moz-focus-inner, -.c19[type='button']::-moz-focus-inner, -.c19[type='reset']::-moz-focus-inner, -.c19[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c19:-moz-focusring, -.c19[type='button']:-moz-focusring, -.c19[type='reset']:-moz-focusring, -.c19[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c19:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c19:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c19:active, -.c19:active:hover, -.c19:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c19[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c19:focus { - background-color: ; - border-color: ; -} - -.c19:hover { - background-color: ; - border-color: ; -} - -.c19:active, -.c19:active:hover, -.c19:active:focus { - background-color: ; - border-color: ; -} - -.c19:focus { - background-color: ; - border-color: ; -} - -.c19:hover { - background-color: ; - border-color: ; -} - -.c19:active, -.c19:active:hover, -.c19:active:focus { - background-color: ; - border-color: ; -} - -.c19 + button { - margin-left: 1.25rem; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c8 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c17 { - vertical-align: middle; -} - -.c15 { - vertical-align: middle; -} - -.c3 { - background-color: #FFFFFF; - padding: 0.75rem; - min-width: auto; - border: none; - box-shadow: none; -} - -.c3:hover, -.c3:focus, -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - border: none; - box-shadow: none; -} - -.c0 { - position: fixed; - width: 100%; - height: 100%; - top: 0; - left: 0; - background-color: rgba(250,250,250,0.5); - z-index: 100; -} - -.c1 { - position: absolute; - left: 50%; - top: 33.33%; - padding: 2.25rem 2.25rem 2.25rem 2.25rem; - background-color: ; - box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1); - width: 28.75rem; - margin: 0 auto 0 -14.375rem; - z-index: 101; -} - -.c2 { - position: absolute; - right: 0.375rem; - top: 0.1875rem; -} - -.c5 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c7 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -.c14 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c14::-moz-focus-inner, -.c14[type='button']::-moz-focus-inner, -.c14[type='reset']::-moz-focus-inner, -.c14[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c14:-moz-focusring, -.c14[type='button']:-moz-focusring, -.c14[type='reset']:-moz-focusring, -.c14[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c14 > svg { - -webkit-fill: ; - fill: ; -} - -.c14:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c14:hover { - background-color: ; - border-color: ; -} - -.c14:focus, -.c14:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c14[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c14[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c14[disabled]:focus, -.c14[disabled]:hover, -.c14[disabled]:active, -.c14[disabled]:active:hover, -.c14[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c14[disabled]:focus, -.c14[disabled]:hover, -.c14[disabled]:active, -.c14[disabled]:active:hover, -.c14[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c16 { - margin-left: 0.375rem; -} - -.c9 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - float: right; -} - -.c11 { - margin-bottom: 1.5rem; -} - -.c13 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c13:focus { - border-color: ; - outline: 0; -} - -.c12 { - width: 7.5rem; - margin: 0 0.75rem 0 0; - vertical-align: middle; -} - -
    - .c3 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c3::-moz-focus-inner, -.c3[type='button']::-moz-focus-inner, -.c3[type='reset']::-moz-focus-inner, -.c3[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c3:-moz-focusring, -.c3[type='button']:-moz-focusring, -.c3[type='reset']:-moz-focusring, -.c3[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c3:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c3:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c3[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c3 + button { - margin-left: 1.25rem; -} - -.c17 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c17::-moz-focus-inner, -.c17[type='button']::-moz-focus-inner, -.c17[type='reset']::-moz-focus-inner, -.c17[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c17:-moz-focusring, -.c17[type='button']:-moz-focusring, -.c17[type='reset']:-moz-focusring, -.c17[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c17:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c17:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c17:active, -.c17:active:hover, -.c17:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c17[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c17:focus { - background-color: ; - border-color: ; -} - -.c17:hover { - background-color: ; - border-color: ; -} - -.c17:active, -.c17:active:hover, -.c17:active:focus { - background-color: ; - border-color: ; -} - -.c17 + button { - margin-left: 1.25rem; -} - -.c18 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c18::-moz-focus-inner, -.c18[type='button']::-moz-focus-inner, -.c18[type='reset']::-moz-focus-inner, -.c18[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c18:-moz-focusring, -.c18[type='button']:-moz-focusring, -.c18[type='reset']:-moz-focusring, -.c18[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c18:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c18:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c18:active, -.c18:active:hover, -.c18:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c18[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c18:focus { - background-color: ; - border-color: ; -} - -.c18:hover { - background-color: ; - border-color: ; -} - -.c18:active, -.c18:active:hover, -.c18:active:focus { - background-color: ; - border-color: ; -} - -.c18:focus { - background-color: ; - border-color: ; -} - -.c18:hover { - background-color: ; - border-color: ; -} - -.c18:active, -.c18:active:hover, -.c18:active:focus { - background-color: ; - border-color: ; -} - -.c18 + button { - margin-left: 1.25rem; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c16 { - vertical-align: middle; -} - -.c14 { - vertical-align: middle; -} - -.c2 { - background-color: #FFFFFF; - padding: 0.75rem; - min-width: auto; - border: none; - box-shadow: none; -} - -.c2:hover, -.c2:focus, -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-color: #FFFFFF; - border: none; - box-shadow: none; -} - -.c0 { - position: absolute; - left: 50%; - top: 33.33%; - padding: 2.25rem 2.25rem 2.25rem 2.25rem; - background-color: ; - box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1); - width: 28.75rem; - margin: 0 auto 0 -14.375rem; - z-index: 101; -} - -.c1 { - position: absolute; - right: 0.375rem; - top: 0.1875rem; -} - -.c4 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c6 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -.c13 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c13::-moz-focus-inner, -.c13[type='button']::-moz-focus-inner, -.c13[type='reset']::-moz-focus-inner, -.c13[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c13:-moz-focusring, -.c13[type='button']:-moz-focusring, -.c13[type='reset']:-moz-focusring, -.c13[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c13 > svg { - -webkit-fill: ; - fill: ; -} - -.c13:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c13:hover { - background-color: ; - border-color: ; -} - -.c13:focus, -.c13:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c13:active, -.c13:active:hover, -.c13:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c13:active, -.c13:active:hover, -.c13:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c13[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c13[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c13[disabled]:focus, -.c13[disabled]:hover, -.c13[disabled]:active, -.c13[disabled]:active:hover, -.c13[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c13[disabled]:focus, -.c13[disabled]:hover, -.c13[disabled]:active, -.c13[disabled]:active:hover, -.c13[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c15 { - margin-left: 0.375rem; -} - -.c8 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c9 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - float: right; -} - -.c10 { - margin-bottom: 1.5rem; -} - -.c12 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c12:focus { - border-color: ; - outline: 0; -} - -.c11 { - width: 7.5rem; - margin: 0 0.75rem 0 0; - vertical-align: middle; -} - -
    - .c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c1 { - background-color: #FFFFFF; - padding: 0.75rem; - min-width: auto; - border: none; - box-shadow: none; -} - -.c1:hover, -.c1:focus, -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: #FFFFFF; - border: none; - box-shadow: none; -} - -.c0 { - position: absolute; - right: 0.375rem; - top: 0.1875rem; -} - - - .c13 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c13::-moz-focus-inner, -.c13[type='button']::-moz-focus-inner, -.c13[type='reset']::-moz-focus-inner, -.c13[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c13:-moz-focusring, -.c13[type='button']:-moz-focusring, -.c13[type='reset']:-moz-focusring, -.c13[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c13:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c13:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c13:active, -.c13:active:hover, -.c13:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c13[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c13:focus { - background-color: ; - border-color: ; -} - -.c13:hover { - background-color: ; - border-color: ; -} - -.c13:active, -.c13:active:hover, -.c13:active:focus { - background-color: ; - border-color: ; -} - -.c13 + button { - margin-left: 1.25rem; -} - -.c14 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c14::-moz-focus-inner, -.c14[type='button']::-moz-focus-inner, -.c14[type='reset']::-moz-focus-inner, -.c14[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c14:-moz-focusring, -.c14[type='button']:-moz-focusring, -.c14[type='reset']:-moz-focusring, -.c14[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c14:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c14:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c14[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c14:focus { - background-color: ; - border-color: ; -} - -.c14:hover { - background-color: ; - border-color: ; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus { - background-color: ; - border-color: ; -} - -.c14:focus { - background-color: ; - border-color: ; -} - -.c14:hover { - background-color: ; - border-color: ; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus { - background-color: ; - border-color: ; -} - -.c14 + button { - margin-left: 1.25rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c12 { - vertical-align: middle; -} - -.c10 { - vertical-align: middle; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -.c2 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -.c9 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c9::-moz-focus-inner, -.c9[type='button']::-moz-focus-inner, -.c9[type='reset']::-moz-focus-inner, -.c9[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c9:-moz-focusring, -.c9[type='button']:-moz-focusring, -.c9[type='reset']:-moz-focusring, -.c9[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c9 > svg { - -webkit-fill: ; - fill: ; -} - -.c9:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c9:hover { - background-color: ; - border-color: ; -} - -.c9:focus, -.c9:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c9:active, -.c9:active:hover, -.c9:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c9[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c9[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c9[disabled]:focus, -.c9[disabled]:hover, -.c9[disabled]:active, -.c9[disabled]:active:hover, -.c9[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c9[disabled]:focus, -.c9[disabled]:hover, -.c9[disabled]:active, -.c9[disabled]:active:hover, -.c9[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c11 { - margin-left: 0.375rem; -} - -.c4 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - float: right; -} - -.c6 { - margin-bottom: 1.5rem; -} - -.c8 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c8:focus { - border-color: ; - outline: 0; -} - -.c7 { - width: 7.5rem; - margin: 0 0.75rem 0 0; - vertical-align: middle; -} - -
    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; -} - -.c0 { - line-height: 1.25; - color: ; - margin: 0 0 0.75rem 0; -} - -

    - Scaling a service: -
    - Nginx -

    - .c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; -} - -.c0 { - color: ; - margin: 0.75rem 0 1.875rem 0; -} - -

    - Choose how many instances of a service you want to have running. -

    - .c8 { - vertical-align: middle; -} - -.c6 { - vertical-align: middle; -} - -.c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5 > svg { - -webkit-fill: ; - fill: ; -} - -.c5:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border-color: ; -} - -.c5:focus, -.c5:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c5[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c5[disabled]:focus, -.c5[disabled]:hover, -.c5[disabled]:active, -.c5[disabled]:active:hover, -.c5[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c5[disabled]:focus, -.c5[disabled]:hover, -.c5[disabled]:active, -.c5[disabled]:active:hover, -.c5[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c7 { - margin-left: 0.375rem; -} - -.c0 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - float: right; -} - -.c2 { - margin-bottom: 1.5rem; -} - -.c4 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c4:focus { - border-color: ; - outline: 0; -} - -.c3 { - width: 7.5rem; - margin: 0 0.75rem 0 0; - vertical-align: middle; -} - -
    - .c7 { - vertical-align: middle; -} - -.c5 { - vertical-align: middle; -} - -.c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - border-radius: 0.25rem; - border: solid 0.0625rem; - background-color: ; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.9375rem 1.125rem; - position: relative; - text-align: center; - line-height: normal; - vertical-align: middle; - touch-action: manipulation; - min-width: 0; - cursor: pointer; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4 > svg { - -webkit-fill: ; - fill: ; -} - -.c4:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border-color: ; -} - -.c4:focus, -.c4:hover > svg { - -webkit-fill: ; - fill: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - outline: 0; - background-color: ; - border-color: ; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; - color: ; - background-color: ; - border-color: ; -} - -.c4[disabled] > svg { - -webkit-fill: ; - fill: ; -} - -.c4[disabled]:focus, -.c4[disabled]:hover, -.c4[disabled]:active, -.c4[disabled]:active:hover, -.c4[disabled]:active:focus { - background-color: ; - border-color: ; -} - -.c4[disabled]:focus, -.c4[disabled]:hover, -.c4[disabled]:active, -.c4[disabled]:active:hover, -.c4[disabled]:active:focus > svg { - -webkit-fill: ; - fill: ; -} - -.c6 { - margin-left: 0.375rem; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - float: right; -} - -.c1 { - margin-bottom: 1.5rem; -} - -.c3 { - box-sizing: border-box; - width: 100%; - height: 3rem; - margin-bottom: 0.5rem; - margin-top: 0.5rem; - padding: 0.8125rem 1.125rem; - border-radius: 0.25rem; - background-color: ; - border: 0.0625rem solid; - font-size: 0.9375rem; - line-height: normal !important; - font-weight: 400; - font-style: normal; - font-stretch: normal; - color: ; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; -} - -.c3:focus { - border-color: ; - outline: 0; -} - -.c2 { - width: 7.5rem; - margin: 0 0.75rem 0 0; - vertical-align: middle; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - float: right; -} - -
    -
    - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - color: ; - background-color: ; - border-color: ; - color: ; - background-color: ; - border-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c0::-moz-focus-inner, -.c0[type='button']::-moz-focus-inner, -.c0[type='reset']::-moz-focus-inner, -.c0[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c0:-moz-focusring, -.c0[type='button']:-moz-focusring, -.c0[type='reset']:-moz-focusring, -.c0[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c0:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0:focus { - background-color: ; - border-color: ; -} - -.c0:hover { - background-color: ; - border-color: ; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: ; - border-color: ; -} - -.c0 + button { - margin-left: 1.25rem; -} - - -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/service/delete.js b/packages/cp-frontend/test/unit/containers/service/delete.js deleted file mode 100644 index ca2b48c4..00000000 --- a/packages/cp-frontend/test/unit/containers/service/delete.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { ServiceDelete } from '@containers/service/delete.js'; -import { Router, Store, service } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/service/scale.js b/packages/cp-frontend/test/unit/containers/service/scale.js deleted file mode 100644 index 3a29ff2e..00000000 --- a/packages/cp-frontend/test/unit/containers/service/scale.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { ServiceScale } from '@containers/service/scale'; -import { Router, Store, service } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/services/__snapshots__/list.js.snap b/packages/cp-frontend/test/unit/containers/services/__snapshots__/list.js.snap deleted file mode 100644 index a6a5bf7d..00000000 --- a/packages/cp-frontend/test/unit/containers/services/__snapshots__/list.js.snap +++ /dev/null @@ -1,3023 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c9 { - color: ; - color: ; - text-decoration: none; -} - -.c17 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - border-radius: 0; -} - -.c17::-moz-focus-inner, -.c17[type='button']::-moz-focus-inner, -.c17[type='reset']::-moz-focus-inner, -.c17[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c17:-moz-focusring, -.c17[type='button']:-moz-focusring, -.c17[type='reset']:-moz-focusring, -.c17[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c17:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c17:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c17:active, -.c17:active:hover, -.c17:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c17[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c17 + button { - margin-left: 1.25rem; -} - -.c6 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - color: ; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c24 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c23 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - padding-bottom: 0.75rem; -} - -.c11 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c2 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; -} - -.c5 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; - min-height: auto; - height: 3rem; - margin-bottom: 1rem; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.1); -} - -.c4 { - position: absolute; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - background-color: ; - border: solid 0.0625rem; - box-shadow: none; - width: calc(100% + 0.125rem); - margin: -0.0625rem -0.0625rem 0 -0.0625rem; -} - -.c21 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - margin: 0; - height: auto; - padding-top: 0; - min-width: auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; -} - -.c15 { - display: block; - -webkit-flex: 0 0 2.9375rem; - -ms-flex: 0 0 2.9375rem; - flex: 0 0 2.9375rem; - border-left: 0.0625rem solid; - box-sizing: border-box; - border-left-color: ; -} - -.c16 { - position: relative; - border-width: 0; - box-shadow: none; - width: 100%; - min-width: 2.875rem !important; - height: 7.75rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - overflow-x: visible; - overflow-y: visible; - height: 2.875rem; -} - -.c16:focus { - border-width: 0; -} - -.c16:hover { - border-width: 0; -} - -.c16:active, -.c16:active:hover, -.c16:active:focus { - border-width: 0; -} - -.c18 { - position: absolute; - left: 50%; - top: 35%; -} - -.c19 { - margin: 0 0 0.125rem -0.125rem; - border-radius: 50%; - background-color: ; - width: 0.25rem; - height: 0.25rem; -} - -.c14 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c14::first-letter { - text-transform: capitalize; -} - -.c13 { - position: absolute; -} - -.c13 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c12 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -.c0 { - margin-right: auto; - margin-left: auto; - padding-top: 1.1875rem; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - display: block; - -webkit-flex-flow: column; - -ms-flex-flow: column; - flex-flow: column; -} - -.c25 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c26 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c3 { - position: relative; -} - -.c7 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: left; - -webkit-justify-content: left; - -ms-flex-pack: left; - justify-content: left; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c8 { - color: ; -} - -.c20 { - height: 7.5rem; -} - -.c22 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c27 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -.c1 { - position: relative; -} - -@media only screen and (min-width:48em) { - .c0 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c0 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c0 { - width: 76rem; - } -} - -
    - .c8 { - color: ; - color: ; - text-decoration: none; -} - -.c16 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - border-radius: 0; -} - -.c16::-moz-focus-inner, -.c16[type='button']::-moz-focus-inner, -.c16[type='reset']::-moz-focus-inner, -.c16[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c16:-moz-focusring, -.c16[type='button']:-moz-focusring, -.c16[type='reset']:-moz-focusring, -.c16[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c16:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c16:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c16:active, -.c16:active:hover, -.c16:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c16[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c16 + button { - margin-left: 1.25rem; -} - -.c5 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - color: ; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c23 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c9 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c22 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - padding-bottom: 0.75rem; -} - -.c10 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; -} - -.c4 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; - min-height: auto; - height: 3rem; - margin-bottom: 1rem; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.1); -} - -.c3 { - position: absolute; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - background-color: ; - border: solid 0.0625rem; - box-shadow: none; - width: calc(100% + 0.125rem); - margin: -0.0625rem -0.0625rem 0 -0.0625rem; -} - -.c20 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - margin: 0; - height: auto; - padding-top: 0; - min-width: auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; -} - -.c14 { - display: block; - -webkit-flex: 0 0 2.9375rem; - -ms-flex: 0 0 2.9375rem; - flex: 0 0 2.9375rem; - border-left: 0.0625rem solid; - box-sizing: border-box; - border-left-color: ; -} - -.c15 { - position: relative; - border-width: 0; - box-shadow: none; - width: 100%; - min-width: 2.875rem !important; - height: 7.75rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - overflow-x: visible; - overflow-y: visible; - height: 2.875rem; -} - -.c15:focus { - border-width: 0; -} - -.c15:hover { - border-width: 0; -} - -.c15:active, -.c15:active:hover, -.c15:active:focus { - border-width: 0; -} - -.c17 { - position: absolute; - left: 50%; - top: 35%; -} - -.c18 { - margin: 0 0 0.125rem -0.125rem; - border-radius: 50%; - background-color: ; - width: 0.25rem; - height: 0.25rem; -} - -.c13 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c13::first-letter { - text-transform: capitalize; -} - -.c12 { - position: absolute; -} - -.c12 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c11 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -.c24 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c25 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c2 { - position: relative; -} - -.c6 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: left; - -webkit-justify-content: left; - -ms-flex-pack: left; - justify-content: left; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c7 { - color: ; -} - -.c19 { - height: 7.5rem; -} - -.c21 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c26 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -.c0 { - position: relative; -} - -
    - .c7 { - color: ; - color: ; - text-decoration: none; -} - -.c15 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - border-radius: 0; -} - -.c15::-moz-focus-inner, -.c15[type='button']::-moz-focus-inner, -.c15[type='reset']::-moz-focus-inner, -.c15[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c15:-moz-focusring, -.c15[type='button']:-moz-focusring, -.c15[type='reset']:-moz-focusring, -.c15[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c15:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c15:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c15:active, -.c15:active:hover, -.c15:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c15[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c15 + button { - margin-left: 1.25rem; -} - -.c4 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - color: ; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c22 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c8 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c21 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - padding-bottom: 0.75rem; -} - -.c9 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; -} - -.c3 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; - min-height: auto; - height: 3rem; - margin-bottom: 1rem; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.1); -} - -.c2 { - position: absolute; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - background-color: ; - border: solid 0.0625rem; - box-shadow: none; - width: calc(100% + 0.125rem); - margin: -0.0625rem -0.0625rem 0 -0.0625rem; -} - -.c19 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - margin: 0; - height: auto; - padding-top: 0; - min-width: auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; -} - -.c13 { - display: block; - -webkit-flex: 0 0 2.9375rem; - -ms-flex: 0 0 2.9375rem; - flex: 0 0 2.9375rem; - border-left: 0.0625rem solid; - box-sizing: border-box; - border-left-color: ; -} - -.c14 { - position: relative; - border-width: 0; - box-shadow: none; - width: 100%; - min-width: 2.875rem !important; - height: 7.75rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - overflow-x: visible; - overflow-y: visible; - height: 2.875rem; -} - -.c14:focus { - border-width: 0; -} - -.c14:hover { - border-width: 0; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus { - border-width: 0; -} - -.c16 { - position: absolute; - left: 50%; - top: 35%; -} - -.c17 { - margin: 0 0 0.125rem -0.125rem; - border-radius: 50%; - background-color: ; - width: 0.25rem; - height: 0.25rem; -} - -.c12 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c12::first-letter { - text-transform: capitalize; -} - -.c11 { - position: absolute; -} - -.c11 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c10 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -.c23 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c24 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c1 { - position: relative; -} - -.c5 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: left; - -webkit-justify-content: left; - -ms-flex-pack: left; - justify-content: left; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c6 { - color: ; -} - -.c18 { - height: 7.5rem; -} - -.c20 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c25 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c6 { - color: ; - color: ; - text-decoration: none; -} - -.c14 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - border-radius: 0; -} - -.c14::-moz-focus-inner, -.c14[type='button']::-moz-focus-inner, -.c14[type='reset']::-moz-focus-inner, -.c14[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c14:-moz-focusring, -.c14[type='button']:-moz-focusring, -.c14[type='reset']:-moz-focusring, -.c14[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c14:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c14:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c14:active, -.c14:active:hover, -.c14:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c14[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c14 + button { - margin-left: 1.25rem; -} - -.c3 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - color: ; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c8 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c2 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - position: relative; - height: auto; - min-height: 7.875rem; - margin-bottom: 0.625rem; - border: 0.0625rem solid; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin-right: 0rem; - margin-left: 0rem; - min-height: auto; - height: 3rem; - margin-bottom: 1rem; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.1); -} - -.c1 { - position: absolute; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - background-color: ; - border: solid 0.0625rem; - box-shadow: none; - width: calc(100% + 0.125rem); - margin: -0.0625rem -0.0625rem 0 -0.0625rem; -} - -.c12 { - display: block; - -webkit-flex: 0 0 2.9375rem; - -ms-flex: 0 0 2.9375rem; - flex: 0 0 2.9375rem; - border-left: 0.0625rem solid; - box-sizing: border-box; - border-left-color: ; -} - -.c13 { - position: relative; - border-width: 0; - box-shadow: none; - width: 100%; - min-width: 2.875rem !important; - height: 7.75rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - overflow-x: visible; - overflow-y: visible; - height: 2.875rem; -} - -.c13:focus { - border-width: 0; -} - -.c13:hover { - border-width: 0; -} - -.c13:active, -.c13:active:hover, -.c13:active:focus { - border-width: 0; -} - -.c15 { - position: absolute; - left: 50%; - top: 35%; -} - -.c16 { - margin: 0 0 0.125rem -0.125rem; - border-radius: 50%; - background-color: ; - width: 0.25rem; - height: 0.25rem; -} - -.c11 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c11::first-letter { - text-transform: capitalize; -} - -.c10 { - position: absolute; -} - -.c10 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c9 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -.c0 { - position: relative; -} - -.c4 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: left; - -webkit-justify-content: left; - -ms-flex-pack: left; - justify-content: left; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c5 { - color: ; -} - -
    - .c3 { - color: ; - color: ; - text-decoration: none; -} - -.c0 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - color: ; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c1 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: left; - -webkit-justify-content: left; - -ms-flex-pack: left; - justify-content: left; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c2 { - color: ; -} - -
    - .c2 { - color: ; - color: ; - text-decoration: none; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: left; - -webkit-justify-content: left; - -ms-flex-pack: left; - justify-content: left; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.c1 { - color: ; -} - -
    - .c1 { - color: ; - color: ; - text-decoration: none; -} - -.c0 { - color: ; -} - - - Nginx - -
    -
    - .c1 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; - color: ; - -webkit-flex-grow: 6; - -ms-flex-grow: 6; - flex-grow: 6; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - width: auto; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 1.125rem; -} - -.c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; -} - -.c2 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c5::first-letter { - text-transform: capitalize; -} - -.c4 { - position: absolute; -} - -.c4 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c3 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c0 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c3::first-letter { - text-transform: capitalize; -} - -.c2 { - position: absolute; -} - -.c2 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c1 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c2::first-letter { - text-transform: capitalize; -} - -.c1 { - position: absolute; -} - -.c1 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -.c0 { - height: 100%; - float: right; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; -} - -
    - .c0 { - position: absolute; -} - -.c0 > svg { - -webkit-fill: undefined; - fill: undefined; -} - -
    - - - icon: instances - - - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - font-style: normal; - font-stretch: normal; - display: block; - color: ; - display: inline-block; - color: undefined; - margin-left: 1.5rem; -} - -.c0::first-letter { - text-transform: capitalize; -} - - -
    -
    -
    - .c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; - border-radius: 0; -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c0 { - display: block; - -webkit-flex: 0 0 2.9375rem; - -ms-flex: 0 0 2.9375rem; - flex: 0 0 2.9375rem; - border-left: 0.0625rem solid; - box-sizing: border-box; - border-left-color: ; -} - -.c1 { - position: relative; - border-width: 0; - box-shadow: none; - width: 100%; - min-width: 2.875rem !important; - height: 7.75rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - overflow-x: visible; - overflow-y: visible; - height: 2.875rem; -} - -.c1:focus { - border-width: 0; -} - -.c1:hover { - border-width: 0; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - border-width: 0; -} - -.c3 { - position: absolute; - left: 50%; - top: 35%; -} - -.c4 { - margin: 0 0 0.125rem -0.125rem; - border-radius: 50%; - background-color: ; - width: 0.25rem; - height: 0.25rem; -} - - -
    - .c4 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - padding-bottom: 0.75rem; -} - -.c5 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c1 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - margin: 0; - height: auto; - padding-top: 0; - min-width: auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; -} - -.c6 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c0 { - height: 7.5rem; -} - -.c2 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c8 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c2 { - font-size: 0.9375rem; - line-height: 1.5; - color: ; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-flex-grow: 2; - -ms-flex-grow: 2; - flex-grow: 2; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - width: 100%; - padding: 0.75rem 1.125rem 0 1.125rem; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 5.625rem; - -ms-flex-basis: 5.625rem; - flex-basis: 5.625rem; - padding-bottom: 0.75rem; -} - -.c3 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c4 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c0 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-content: center; - -ms-flex-line-pack: center; - align-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.c6 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c0 { - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - height: 100%; - position: relative; -} - -.c1 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -.c3 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    - .c0 { - display: inline-block; - margin: 0; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0 0 0.375rem 0; - font-size: 0.8125rem; - line-height: 0.8125rem; -} - -

    - 1 - instance - running -

    -
    - .c0 { - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-align-self: flex-end; - -ms-flex-item-align: flex-end; - align-self: flex-end; - position: absolute; - bottom: 0; -} - -
    -
    -
    -
    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/services/__snapshots__/menu.js.snap b/packages/cp-frontend/test/unit/containers/services/__snapshots__/menu.js.snap deleted file mode 100644 index 96d727f6..00000000 --- a/packages/cp-frontend/test/unit/containers/services/__snapshots__/menu.js.snap +++ /dev/null @@ -1,1564 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c3 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c0 { - margin-right: auto; - margin-left: auto; - padding-top: 1.1875rem; -} - -.c4 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c9 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c9[type='checkbox'], -.c9[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c9[type='number']::-webkit-inner-spin-button, -.c9[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c9[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c9[type='search']::-webkit-search-cancel-button, -.c9[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c9::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c9:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c9:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c9:disabled + label { - color: ; -} - -.c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c10:hover { - color: ; -} - -.c8 { - position: relative; - vertical-align: text-bottom; - width: 7.5rem; - height: 3rem; -} - -.c7 { - display: inline-block; - list-style-type: none; - vertical-align: text-bottom; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; -} - -.c7:first-of-type { - border-radius: 0.25rem 0 0 0.25rem; -} - -.c7:last-of-type { - border-radius: 0 0.25rem 0.25rem 0; - border-right: 0.0625rem solid; -} - -.c6 { - display: inline-block; - margin: 0; - padding: 0; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - margin-top: 0.125rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -.c5 { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - float: left; - padding-top: 0.75rem; - margin-right: 0.5625rem; -} - -.c2 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin-bottom: 1.125rem; -} - -@media only screen and (min-width:0em) { - .c3 { - -webkit-flex-basis: 41.66666666666667%; - -ms-flex-basis: 41.66666666666667%; - flex-basis: 41.66666666666667%; - max-width: 41.66666666666667%; - display: block; - } -} - -@media only screen and (min-width:48em) { - .c0 { - width: 46rem; - } -} - -@media only screen and (min-width:64em) { - .c0 { - width: 61rem; - } -} - -@media only screen and (min-width:75em) { - .c0 { - width: 76rem; - } -} - -
    - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 500; - font-size: 1.5rem; - margin-top: 0.125rem; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; -} - -

    - Services -

    - .c1 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c2 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c7 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c7[type='checkbox'], -.c7[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c7[type='number']::-webkit-inner-spin-button, -.c7[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c7[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c7[type='search']::-webkit-search-cancel-button, -.c7[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c7::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c7:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c7:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c7:disabled + label { - color: ; -} - -.c8 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c8:hover { - color: ; -} - -.c6 { - position: relative; - vertical-align: text-bottom; - width: 7.5rem; - height: 3rem; -} - -.c5 { - display: inline-block; - list-style-type: none; - vertical-align: text-bottom; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; -} - -.c5:first-of-type { - border-radius: 0.25rem 0 0 0.25rem; -} - -.c5:last-of-type { - border-radius: 0 0.25rem 0.25rem 0; - border-right: 0.0625rem solid; -} - -.c4 { - display: inline-block; - margin: 0; - padding: 0; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c3 { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - float: left; - padding-top: 0.75rem; - margin-right: 0.5625rem; -} - -.c0 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 0 1 auto; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5rem; - margin-left: -0.5rem; - margin-bottom: 1.125rem; -} - -@media only screen and (min-width:0em) { - .c1 { - -webkit-flex-basis: 41.66666666666667%; - -ms-flex-basis: 41.66666666666667%; - flex-basis: 41.66666666666667%; - max-width: 41.66666666666667%; - display: block; - } -} - -
    - .c0 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.c1 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c6 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c6[type='checkbox'], -.c6[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c6[type='number']::-webkit-inner-spin-button, -.c6[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c6[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c6[type='search']::-webkit-search-cancel-button, -.c6[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c6::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c6:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c6:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c6:disabled + label { - color: ; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c7:hover { - color: ; -} - -.c5 { - position: relative; - vertical-align: text-bottom; - width: 7.5rem; - height: 3rem; -} - -.c4 { - display: inline-block; - list-style-type: none; - vertical-align: text-bottom; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; -} - -.c4:first-of-type { - border-radius: 0.25rem 0 0 0.25rem; -} - -.c4:last-of-type { - border-radius: 0 0.25rem 0.25rem 0; - border-right: 0.0625rem solid; -} - -.c3 { - display: inline-block; - margin: 0; - padding: 0; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c2 { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - float: left; - padding-top: 0.75rem; - margin-right: 0.5625rem; -} - -@media only screen and (min-width:0em) { - .c0 { - -webkit-flex-basis: 41.66666666666667%; - -ms-flex-basis: 41.66666666666667%; - flex-basis: 41.66666666666667%; - max-width: 41.66666666666667%; - display: block; - } -} - -
    - .c0 { - padding: 0.35em 0.75em 0.625em; - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - width: 100%; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; -} - -.c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c5[type='checkbox'], -.c5[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c5[type='number']::-webkit-inner-spin-button, -.c5[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c5[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c5[type='search']::-webkit-search-cancel-button, -.c5[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c5::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c5:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c5:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c5:disabled + label { - color: ; -} - -.c6 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c6:hover { - color: ; -} - -.c4 { - position: relative; - vertical-align: text-bottom; - width: 7.5rem; - height: 3rem; -} - -.c3 { - display: inline-block; - list-style-type: none; - vertical-align: text-bottom; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; -} - -.c3:first-of-type { - border-radius: 0.25rem 0 0 0.25rem; -} - -.c3:last-of-type { - border-radius: 0 0.25rem 0.25rem 0; - border-right: 0.0625rem solid; -} - -.c2 { - display: inline-block; - margin: 0; - padding: 0; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c1 { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - float: left; - padding-top: 0.75rem; - margin-right: 0.5625rem; -} - -
    - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c4[type='checkbox'], -.c4[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c4[type='number']::-webkit-inner-spin-button, -.c4[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c4[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c4[type='search']::-webkit-search-cancel-button, -.c4[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c4::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c4:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c4:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c4:disabled + label { - color: ; -} - -.c5 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c5:hover { - color: ; -} - -.c3 { - position: relative; - vertical-align: text-bottom; - width: 7.5rem; - height: 3rem; -} - -.c2 { - display: inline-block; - list-style-type: none; - vertical-align: text-bottom; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; -} - -.c2:first-of-type { - border-radius: 0.25rem 0 0 0.25rem; -} - -.c2:last-of-type { - border-radius: 0 0.25rem 0.25rem 0; - border-right: 0.0625rem solid; -} - -.c1 { - display: inline-block; - margin: 0; - padding: 0; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c0 { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - float: left; - padding-top: 0.75rem; - margin-right: 0.5625rem; -} - -
    - .c0 { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 600; - float: left; - padding-top: 0.75rem; - margin-right: 0.5625rem; -} - - - View - - .c3 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c3[type='checkbox'], -.c3[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c3[type='number']::-webkit-inner-spin-button, -.c3[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c3[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c3[type='search']::-webkit-search-cancel-button, -.c3[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c3::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c3:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c3:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c3:disabled + label { - color: ; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c4:hover { - color: ; -} - -.c2 { - position: relative; - vertical-align: text-bottom; - width: 7.5rem; - height: 3rem; -} - -.c1 { - display: inline-block; - list-style-type: none; - vertical-align: text-bottom; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; -} - -.c1:first-of-type { - border-radius: 0.25rem 0 0 0.25rem; -} - -.c1:last-of-type { - border-radius: 0 0.25rem 0.25rem 0; - border-right: 0.0625rem solid; -} - -.c0 { - display: inline-block; - margin: 0; - padding: 0; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -
      - .c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c2[type='checkbox'], -.c2[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c2[type='number']::-webkit-inner-spin-button, -.c2[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c2[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c2[type='search']::-webkit-search-cancel-button, -.c2[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c2::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c2:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c2:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c2:disabled + label { - color: ; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c3:hover { - color: ; -} - -.c1 { - position: relative; - vertical-align: text-bottom; - width: 7.5rem; - height: 3rem; -} - -.c0 { - display: inline-block; - list-style-type: none; - vertical-align: text-bottom; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; -} - -.c0:first-of-type { - border-radius: 0.25rem 0 0 0.25rem; -} - -.c0:last-of-type { - border-radius: 0 0.25rem 0.25rem 0; - border-right: 0.0625rem solid; -} - -
    • - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c1[type='checkbox'], -.c1[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c1[type='number']::-webkit-inner-spin-button, -.c1[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c1[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c1[type='search']::-webkit-search-cancel-button, -.c1[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c1::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c1:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c1:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c1:disabled + label { - color: ; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c2:hover { - color: ; -} - -.c0 { - position: relative; - vertical-align: text-bottom; - width: 7.5rem; - height: 3rem; -} - -
      - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c0[type='checkbox'], -.c0[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c0[type='number']::-webkit-inner-spin-button, -.c0[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c0[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c0[type='search']::-webkit-search-cancel-button, -.c0[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c0::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c0:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c0:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c0:disabled + label { - color: ; -} - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c0:hover { - color: ; -} - - -
      -
    • - .c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c2[type='checkbox'], -.c2[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c2[type='number']::-webkit-inner-spin-button, -.c2[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c2[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c2[type='search']::-webkit-search-cancel-button, -.c2[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c2::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c2:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c2:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c2:disabled + label { - color: ; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c3:hover { - color: ; -} - -.c1 { - position: relative; - vertical-align: text-bottom; - width: 7.5rem; - height: 3rem; -} - -.c0 { - display: inline-block; - list-style-type: none; - vertical-align: text-bottom; - border-top: 0.0625rem solid; - border-bottom: 0.0625rem solid; - border-left: 0.0625rem solid; -} - -.c0:first-of-type { - border-radius: 0.25rem 0 0 0.25rem; -} - -.c0:last-of-type { - border-radius: 0 0.25rem 0.25rem 0; - border-right: 0.0625rem solid; -} - -
    • - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c1[type='checkbox'], -.c1[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c1[type='number']::-webkit-inner-spin-button, -.c1[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c1[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c1[type='search']::-webkit-search-cancel-button, -.c1[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c1::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c1:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c1:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c1:disabled + label { - color: ; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c2:hover { - color: ; -} - -.c0 { - position: relative; - vertical-align: text-bottom; - width: 7.5rem; - height: 3rem; -} - -
      - .c0 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - display: none; -} - -.c0[type='checkbox'], -.c0[type='radio'] { - box-sizing: border-box; - padding: 0; -} - -.c0[type='number']::-webkit-inner-spin-button, -.c0[type='number']::-webkit-outer-spin-button { - height: auto; -} - -.c0[type='search'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - outline-offset: -0.125rem; -} - -.c0[type='search']::-webkit-search-cancel-button, -.c0[type='search']::-webkit-search-decoration { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.c0::-webkit-file-upload-button { - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - font: inherit; -} - -.c0:checked + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c0:selected + label { - border-radius: 0.25rem; - background-color: ; - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); - color: ; -} - -.c0:disabled + label { - color: ; -} - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - position: absolute; - box-sizing: border-box; - width: 7.5rem; - height: 3rem; - top: 0; - left: 0; - text-align: center; - padding-top: 0.75rem; - color: ; -} - -.c0:hover { - color: ; -} - - -
      -
    • -
    -
    -
    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/services/__snapshots__/quick-actions.js.snap b/packages/cp-frontend/test/unit/containers/services/__snapshots__/quick-actions.js.snap deleted file mode 100644 index 994a960d..00000000 --- a/packages/cp-frontend/test/unit/containers/services/__snapshots__/quick-actions.js.snap +++ /dev/null @@ -1,1968 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c1 { - position: absolute; - top: auto; - left: auto; - bottom: ; - right: auto; -} - -.c1:focus { - outline: none; -} - -.c2 { - position: relative; - display: inline-block; - top: 0.3125rem; - left: -50%; - margin: 0; - padding: 0.75rem 0; - background-color: ; - border: 0.0625rem solid; - box-shadow: 0 0.125rem 0.375rem 0.0625rem rgba(0,0,0,0.1); - border-radius: 0.25rem; - z-index: 1000; -} - -.c2:after, -.c2:before { - content: ''; - position: absolute; - bottom: 100%; - left: 50%; - height: 0; - width: 0; - border: solid transparent; -} - -.c2:after { - border-bottom-color: #FFFFFF; - border-width: 0.1875rem; - margin-left: -0.1875rem; -} - -.c2:before { - border-bottom-color: #D8D8D8; - border-width: 0.3125rem; - margin-left: -0.3125rem; -} - -.c4 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c4:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c4:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6 { - border-top: 0.0625rem solid; - margin: 0.375rem 0 0.5625rem 0; -} - -.c3 { - margin: 0; - padding: 0; - list-style-type: none; -} - -.c0 { - position: absolute; - top: 0; - left: 0; -} - -
    - .c5 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c5::-moz-focus-inner, -.c5[type='button']::-moz-focus-inner, -.c5[type='reset']::-moz-focus-inner, -.c5[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c5:-moz-focusring, -.c5[type='button']:-moz-focusring, -.c5[type='reset']:-moz-focusring, -.c5[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c5:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c5:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c5:active, -.c5:active:hover, -.c5:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c5[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 + button { - margin-left: 1.25rem; -} - -.c1 { - position: absolute; - top: auto; - left: auto; - bottom: ; - right: auto; -} - -.c1:focus { - outline: none; -} - -.c2 { - position: relative; - display: inline-block; - top: 0.3125rem; - left: -50%; - margin: 0; - padding: 0.75rem 0; - background-color: ; - border: 0.0625rem solid; - box-shadow: 0 0.125rem 0.375rem 0.0625rem rgba(0,0,0,0.1); - border-radius: 0.25rem; - z-index: 1000; -} - -.c2:after, -.c2:before { - content: ''; - position: absolute; - bottom: 100%; - left: 50%; - height: 0; - width: 0; - border: solid transparent; -} - -.c2:after { - border-bottom-color: #FFFFFF; - border-width: 0.1875rem; - margin-left: -0.1875rem; -} - -.c2:before { - border-bottom-color: #D8D8D8; - border-width: 0.3125rem; - margin-left: -0.3125rem; -} - -.c4 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c4:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c4:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c6 { - border-top: 0.0625rem solid; - margin: 0.375rem 0 0.5625rem 0; -} - -.c3 { - margin: 0; - padding: 0; - list-style-type: none; -} - -.c0 { - position: absolute; - top: 0; - left: 0; -} - -
    - .c4 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c4::-moz-focus-inner, -.c4[type='button']::-moz-focus-inner, -.c4[type='reset']::-moz-focus-inner, -.c4[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c4:-moz-focusring, -.c4[type='button']:-moz-focusring, -.c4[type='reset']:-moz-focusring, -.c4[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c4:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c4:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c4:active, -.c4:active:hover, -.c4:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c4[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 + button { - margin-left: 1.25rem; -} - -.c0 { - position: absolute; - top: auto; - left: auto; - bottom: ; - right: auto; -} - -.c0:focus { - outline: none; -} - -.c1 { - position: relative; - display: inline-block; - top: 0.3125rem; - left: -50%; - margin: 0; - padding: 0.75rem 0; - background-color: ; - border: 0.0625rem solid; - box-shadow: 0 0.125rem 0.375rem 0.0625rem rgba(0,0,0,0.1); - border-radius: 0.25rem; - z-index: 1000; -} - -.c1:after, -.c1:before { - content: ''; - position: absolute; - bottom: 100%; - left: 50%; - height: 0; - width: 0; - border: solid transparent; -} - -.c1:after { - border-bottom-color: #FFFFFF; - border-width: 0.1875rem; - margin-left: -0.1875rem; -} - -.c1:before { - border-bottom-color: #D8D8D8; - border-width: 0.3125rem; - margin-left: -0.3125rem; -} - -.c3 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c3:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c3:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c3[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c5 { - border-top: 0.0625rem solid; - margin: 0.375rem 0 0.5625rem 0; -} - -.c2 { - margin: 0; - padding: 0; - list-style-type: none; -} - -
    - .c3 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c3::-moz-focus-inner, -.c3[type='button']::-moz-focus-inner, -.c3[type='reset']::-moz-focus-inner, -.c3[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c3:-moz-focusring, -.c3[type='button']:-moz-focusring, -.c3[type='reset']:-moz-focusring, -.c3[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c3:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c3:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c3:active, -.c3:active:hover, -.c3:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c3[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c3 + button { - margin-left: 1.25rem; -} - -.c0 { - position: relative; - display: inline-block; - top: 0.3125rem; - left: -50%; - margin: 0; - padding: 0.75rem 0; - background-color: ; - border: 0.0625rem solid; - box-shadow: 0 0.125rem 0.375rem 0.0625rem rgba(0,0,0,0.1); - border-radius: 0.25rem; - z-index: 1000; -} - -.c0:after, -.c0:before { - content: ''; - position: absolute; - bottom: 100%; - left: 50%; - height: 0; - width: 0; - border: solid transparent; -} - -.c0:after { - border-bottom-color: #FFFFFF; - border-width: 0.1875rem; - margin-left: -0.1875rem; -} - -.c0:before { - border-bottom-color: #D8D8D8; - border-width: 0.3125rem; - margin-left: -0.3125rem; -} - -.c2 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c2:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c2:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c4 { - border-top: 0.0625rem solid; - margin: 0.375rem 0 0.5625rem 0; -} - -.c1 { - margin: 0; - padding: 0; - list-style-type: none; -} - -
    - .c2 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c2::-moz-focus-inner, -.c2[type='button']::-moz-focus-inner, -.c2[type='reset']::-moz-focus-inner, -.c2[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c2:-moz-focusring, -.c2[type='button']:-moz-focusring, -.c2[type='reset']:-moz-focusring, -.c2[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c2:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c2:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c2:active, -.c2:active:hover, -.c2:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c2[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c2 + button { - margin-left: 1.25rem; -} - -.c1 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c1:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c1:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c3 { - border-top: 0.0625rem solid; - margin: 0.375rem 0 0.5625rem 0; -} - -.c0 { - margin: 0; - padding: 0; - list-style-type: none; -} - -
      - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c0:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -
    • - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c0:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - - -
    • - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c0:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -
    • - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c0:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - - -
    • - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c0:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -
    • - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c0:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - - -
    • - .c0 { - border-top: 0.0625rem solid; - margin: 0.375rem 0 0.5625rem 0; -} - -
      - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c0:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -
    • - .c1 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: ; - background-image: none; - background-color: ; - border-radius: 0.25rem; - border: solid 0.0625rem; -} - -.c1::-moz-focus-inner, -.c1[type='button']::-moz-focus-inner, -.c1[type='reset']::-moz-focus-inner, -.c1[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c1:-moz-focusring, -.c1[type='button']:-moz-focusring, -.c1[type='reset']:-moz-focusring, -.c1[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c1:focus { - outline: 0; - text-decoration: none; - background-color: ; - border-color: ; -} - -.c1:hover { - background-color: ; - border: solid 0.0625rem; -} - -.c1:active, -.c1:active:hover, -.c1:active:focus { - background-image: none; - outline: 0; - background-color: ; - border-color: ; -} - -.c1[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c1 + button { - margin-left: 1.25rem; -} - -.c0 { - width: 100%; - padding: 0.375rem 1.125rem; - background-color: #FFFFFF; - color: #464646; - text-align: left; - border: none; - box-shadow: none; -} - -.c0:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:hover { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0:active, -.c0:active:hover, -.c0:active:focus { - background-color: #FFFFFF; - color: #3B46CC; - border: none; -} - -.c0[disabled] { - cursor: not-allowed; - pointer-events: none; -} - - -
    • -
    -
    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/services/__snapshots__/topology.js.snap b/packages/cp-frontend/test/unit/containers/services/__snapshots__/topology.js.snap deleted file mode 100644 index d653c1da..00000000 --- a/packages/cp-frontend/test/unit/containers/services/__snapshots__/topology.js.snap +++ /dev/null @@ -1,933 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`renders without throwing 1`] = ` -.c5 { - stroke: ; - stroke-width: 1.5; - stroke: ; -} - -.c3 { - stroke: ; - -webkit-fill: ; - fill: ; - stroke-width: 1.5; - rx: 4; - ry: 4; - stroke: ; - -webkit-fill: ; - fill: ; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 16px; - font-weight: 600; - -webkit-fill: ; - fill: ; - cursor: pointer; -} - -.c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - -.c7 { - opacity: 0; - cursor: pointer; -} - -.c7:focus { - outline: none; -} - -.c6 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c8 { - -webkit-fill: ; - fill: ; -} - -.c9 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c2 { - width: 100%; - height: 1000px; -} - -.c2:not(:root) { - overflow: hidden; -} - -.c0 { - padding: 1.5rem; - background-color: ; -} - -.c1 { - position: relative; -} - -
    - .c5 { - stroke: ; - stroke-width: 1.5; - stroke: ; -} - -.c3 { - stroke: ; - -webkit-fill: ; - fill: ; - stroke-width: 1.5; - rx: 4; - ry: 4; - stroke: ; - -webkit-fill: ; - fill: ; -} - -.c4 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 16px; - font-weight: 600; - -webkit-fill: ; - fill: ; - cursor: pointer; -} - -.c10 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - -.c7 { - opacity: 0; - cursor: pointer; -} - -.c7:focus { - outline: none; -} - -.c6 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c8 { - -webkit-fill: ; - fill: ; -} - -.c9 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c2 { - width: 100%; - height: 1000px; -} - -.c2:not(:root) { - overflow: hidden; -} - -.c0 { - padding: 1.5rem; - background-color: ; -} - -.c1 { - position: relative; -} - -
    - .c4 { - stroke: ; - stroke-width: 1.5; - stroke: ; -} - -.c2 { - stroke: ; - -webkit-fill: ; - fill: ; - stroke-width: 1.5; - rx: 4; - ry: 4; - stroke: ; - -webkit-fill: ; - fill: ; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 16px; - font-weight: 600; - -webkit-fill: ; - fill: ; - cursor: pointer; -} - -.c9 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - -.c6 { - opacity: 0; - cursor: pointer; -} - -.c6:focus { - outline: none; -} - -.c5 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c7 { - -webkit-fill: ; - fill: ; -} - -.c8 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c1 { - width: 100%; - height: 1000px; -} - -.c1:not(:root) { - overflow: hidden; -} - -.c0 { - position: relative; -} - -
    - .c3 { - stroke: ; - stroke-width: 1.5; - stroke: ; -} - -.c1 { - stroke: ; - -webkit-fill: ; - fill: ; - stroke-width: 1.5; - rx: 4; - ry: 4; - stroke: ; - -webkit-fill: ; - fill: ; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 16px; - font-weight: 600; - -webkit-fill: ; - fill: ; - cursor: pointer; -} - -.c8 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - -.c5 { - opacity: 0; - cursor: pointer; -} - -.c5:focus { - outline: none; -} - -.c4 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c6 { - -webkit-fill: ; - fill: ; -} - -.c7 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c0 { - width: 100%; - height: 1000px; -} - -.c0:not(:root) { - overflow: hidden; -} - -
    - .c3 { - stroke: ; - stroke-width: 1.5; - stroke: ; -} - -.c1 { - stroke: ; - -webkit-fill: ; - fill: ; - stroke-width: 1.5; - rx: 4; - ry: 4; - stroke: ; - -webkit-fill: ; - fill: ; -} - -.c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 16px; - font-weight: 600; - -webkit-fill: ; - fill: ; - cursor: pointer; -} - -.c8 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - -.c5 { - opacity: 0; - cursor: pointer; -} - -.c5:focus { - outline: none; -} - -.c4 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c6 { - -webkit-fill: ; - fill: ; -} - -.c7 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c0 { - width: 100%; - height: 1000px; -} - -.c0:not(:root) { - overflow: hidden; -} - - - .c2 { - stroke: ; - stroke-width: 1.5; - stroke: ; -} - -.c0 { - stroke: ; - -webkit-fill: ; - fill: ; - stroke-width: 1.5; - rx: 4; - ry: 4; - stroke: ; - -webkit-fill: ; - fill: ; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 16px; - font-weight: 600; - -webkit-fill: ; - fill: ; - cursor: pointer; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - -.c4 { - opacity: 0; - cursor: pointer; -} - -.c4:focus { - outline: none; -} - -.c3 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c5 { - -webkit-fill: ; - fill: ; -} - -.c6 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - - - .c2 { - stroke: ; - stroke-width: 1.5; - stroke: ; -} - -.c0 { - stroke: ; - -webkit-fill: ; - fill: ; - stroke-width: 1.5; - rx: 4; - ry: 4; - stroke: ; - -webkit-fill: ; - fill: ; -} - -.c1 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 16px; - font-weight: 600; - -webkit-fill: ; - fill: ; - cursor: pointer; -} - -.c7 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - -.c4 { - opacity: 0; - cursor: pointer; -} - -.c4:focus { - outline: none; -} - -.c3 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - -.c5 { - -webkit-fill: ; - fill: ; -} - -.c6 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - - - .c0 { - stroke: ; - -webkit-fill: ; - fill: ; - stroke-width: 1.5; - rx: 4; - ry: 4; - stroke: ; - -webkit-fill: ; - fill: ; -} - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 16px; - font-weight: 600; - -webkit-fill: ; - fill: ; - cursor: pointer; -} - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 16px; - font-weight: 600; - -webkit-fill: ; - fill: ; - cursor: pointer; -} - - - Nginx - - - .c0 { - stroke: ; - stroke-width: 1.5; - stroke: ; -} - -.c2 { - opacity: 0; - cursor: pointer; -} - -.c2:focus { - outline: none; -} - -.c1 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - - - .c0 { - stroke: ; - stroke-width: 1.5; - stroke: ; -} - - - .c0 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - - - .c0 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - - - .c0 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - - - .c0 { - opacity: 0; - cursor: pointer; -} - -.c0:focus { - outline: none; -} - - - - .c0 { - stroke: ; - stroke-width: 1.5; - stroke: ; -} - -.c3 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - -.c1 { - -webkit-fill: ; - fill: ; -} - -.c2 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - - - .c0 { - stroke: ; - stroke-width: 1.5; - stroke: ; -} - - - .c2 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - -.c0 { - -webkit-fill: ; - fill: ; -} - -.c1 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - - - .c0 { - -webkit-fill: ; - fill: ; -} - - - .c0 { - -webkit-fill: ; - fill: ; -} - - - - icon: state - - - - - - - - .c0 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - - - .c0 { - -webkit-fill: ; - fill: ; - -webkit-fill: ; - fill: ; -} - - - - icon: instances - - - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - - - 1 inst. - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - - - .c0 { - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-weight: 400; - -webkit-fill: ; - fill: ; - font-size: 12px; - opacity: 0.8; - -webkit-fill: ; - fill: ; -} - - - 1 - running - - - - - - - - - - - -
    -
    -
    -
    -`; diff --git a/packages/cp-frontend/test/unit/containers/services/list.js b/packages/cp-frontend/test/unit/containers/services/list.js deleted file mode 100644 index 22175c88..00000000 --- a/packages/cp-frontend/test/unit/containers/services/list.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { ServiceList } from '@containers/services/list.js'; -import { Router, Store, deploymentGroup, services } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/services/menu.js b/packages/cp-frontend/test/unit/containers/services/menu.js deleted file mode 100644 index 8fc1bec9..00000000 --- a/packages/cp-frontend/test/unit/containers/services/menu.js +++ /dev/null @@ -1,31 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { ServicesMenu } from '@containers/services/menu.js'; -import { Router, Store } from '../../mocks'; - -it('renders without throwing', () => { - const props = { - location: { - pathname: '' - }, - history: { - push: () => {} - } - }; - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/services/quick-actions.js b/packages/cp-frontend/test/unit/containers/services/quick-actions.js deleted file mode 100644 index 592e19af..00000000 --- a/packages/cp-frontend/test/unit/containers/services/quick-actions.js +++ /dev/null @@ -1,29 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { ServicesQuickActions } from '@containers/services/quick-actions.js'; -import { Router, Store, service } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); diff --git a/packages/cp-frontend/test/unit/containers/services/topology.js b/packages/cp-frontend/test/unit/containers/services/topology.js deleted file mode 100644 index 7f7fc4c9..00000000 --- a/packages/cp-frontend/test/unit/containers/services/topology.js +++ /dev/null @@ -1,23 +0,0 @@ -/** - * @jest-environment jsdom - */ - -import React from 'react'; -import renderer from 'react-test-renderer'; -import 'jest-styled-components'; - -import { ServicesTopology } from '@containers/services/topology.js'; -import { Router, Store, services } from '../../mocks'; - -it('renders without throwing', () => { - const tree = renderer - .create( - - - - - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); -}); \ No newline at end of file diff --git a/packages/cp-frontend/test/unit/mocks/data.js b/packages/cp-frontend/test/unit/mocks/data.js deleted file mode 100644 index c4de0128..00000000 --- a/packages/cp-frontend/test/unit/mocks/data.js +++ /dev/null @@ -1,38 +0,0 @@ -export const instance = { - id: '309ecd9f-ac03-474b-aff7-4bd2e743296c', - name: 'wordpress_01', - serviceId: 'be227788-74f1-4e5b-a85f-b5c71cbae8d8', - deploymentGroupId: 'e0ea0c02-55cc-45fe-8064-3e5176a59401', - machineId: '011f7479-2d45-442d-99bf-7f6216954cc8', - status: 'RUNNING', - healthy: 'HEALTHY' -}; - -export const service = { - id: '081a792c-47e0-4439-924b-2efa9788ae9e', - slug: 'nginx', - name: 'Nginx', - deploymentGroupId: 'e0ea0c02-55cc-45fe-8064-3e5176a59401', - connections: ['be227788-74f1-4e5b-a85f-b5c71cbae8d8'], - instances: [instance], - instanceStatuses: [{ status: 'RUNNING', count: 1 }] -}; - -export const deploymentGroup = { - id: 'e0ea0c02-55cc-45fe-8064-3e5176a59401', - slug: 'wordpress-blog-example', - name: 'Wordpress Blog Example' -}; - -export const file = { - id: 'test', - onRemoveFile: () => {}, - readOnly: true -}; - -export const services = [service]; - -export const instances = [instance]; -export const files = [file]; - -export const deploymentGroups = [deploymentGroup]; \ No newline at end of file diff --git a/packages/cp-frontend/test/unit/mocks/index.js b/packages/cp-frontend/test/unit/mocks/index.js deleted file mode 100644 index 2226401f..00000000 --- a/packages/cp-frontend/test/unit/mocks/index.js +++ /dev/null @@ -1,4 +0,0 @@ -export { default as Router } from './router'; -export { default as Store } from './store'; -export { default as Theme } from './theme'; -export * from './data'; diff --git a/packages/cp-frontend/test/unit/mocks/router.js b/packages/cp-frontend/test/unit/mocks/router.js deleted file mode 100644 index 47dbba36..00000000 --- a/packages/cp-frontend/test/unit/mocks/router.js +++ /dev/null @@ -1,4 +0,0 @@ -import React from 'react'; -import { MemoryRouter } from 'react-router-dom'; - -export default ({ children }) => {children}; diff --git a/packages/cp-frontend/test/unit/mocks/store.js b/packages/cp-frontend/test/unit/mocks/store.js deleted file mode 100644 index 6026ecbc..00000000 --- a/packages/cp-frontend/test/unit/mocks/store.js +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react'; -import { client, store } from '@state/store'; -import { ApolloProvider } from 'react-apollo'; - -export default ({ children }) => ( - - {children} - -); diff --git a/packages/cp-frontend/test/unit/mocks/theme.js b/packages/cp-frontend/test/unit/mocks/theme.js deleted file mode 100644 index 5b1a2a45..00000000 --- a/packages/cp-frontend/test/unit/mocks/theme.js +++ /dev/null @@ -1,7 +0,0 @@ -import React from 'react'; -import { ThemeProvider } from 'styled-components'; -import { theme } from 'joyent-ui-toolkit'; - -export default ({ children }) => ( - {children} -); diff --git a/packages/cp-frontend/test/unit/state/reducers/ui.js b/packages/cp-frontend/test/unit/state/reducers/ui.js deleted file mode 100644 index 0a06001a..00000000 --- a/packages/cp-frontend/test/unit/state/reducers/ui.js +++ /dev/null @@ -1,109 +0,0 @@ -import { - _toggleServicesQuickActions, - _toggleInstancesTooltip -} from '@state/reducers/ui'; -import state from '@state/state'; - -describe('ui reducer', () => { - it('toggleServicesQuickActions shows correctly', () => { - const uiState = state.ui; - const expectedUiState = { - ...state.ui, - services: { - ...state.ui.services, - quickActions: { - show: true, - position: { - top: 10, - left: 10 - }, - service: { - id: 'service-id' - } - } - } - }; - const action = { - payload: { - show: true, - position: { - top: 10, - left: 10 - }, - service: { - id: 'service-id' - } - } - }; - const result = _toggleServicesQuickActions(uiState, action); - expect(result).toEqual(expectedUiState); - }); - - it('toggleServicesQuickActions hides correctly', () => { - const uiState = state.ui; - const expectedUiState = { - ...state.ui, - services: { - ...state.ui.services, - quickActions: { - show: false - } - } - }; - const action = { payload: { show: false } }; - const result = _toggleServicesQuickActions(uiState, action); - expect(result).toEqual(expectedUiState); - }); - - it('toggleInstancesTooltip shows correctly', () => { - const uiState = state.ui; - const expectedUiState = { - ...state.ui, - instances: { - ...state.ui.instances, - tooltip: { - show: true, - position: { - top: 10, - left: 10 - }, - instance: { - id: 'instance-id' - }, - type: 'healthy' - } - } - }; - const action = { - payload: { - show: true, - position: { - top: 10, - left: 10 - }, - instance: { - id: 'instance-id' - }, - type: 'healthy' - } - }; - const result = _toggleInstancesTooltip(uiState, action); - expect(result).toEqual(expectedUiState); - }); - - it('toggleServicesQuickActions hides correctly', () => { - const uiState = state.ui; - const expectedUiState = { - ...state.ui, - instances: { - ...state.ui.instances, - tooltip: { - show: false - } - } - }; - const action = { payload: { show: false } }; - const result = _toggleInstancesTooltip(uiState, action); - expect(result).toEqual(expectedUiState); - }); -}); diff --git a/packages/cp-frontend/test/unit/state/selectors.js b/packages/cp-frontend/test/unit/state/selectors.js deleted file mode 100644 index 62c79b06..00000000 --- a/packages/cp-frontend/test/unit/state/selectors.js +++ /dev/null @@ -1,245 +0,0 @@ -import { - getInstanceStatuses, - getInstancesActive, - getInstancesHealthy, - getService, - processServices, - processServicesForTopology -} from '@state/selectors'; - -describe('Redux selectors and Apollo helpers', () => { - describe('getInstanceStatuses', () => { - it('gathers instance statuses correctly', () => { - const service = { - instances: [ - { status: 'RUNNING' }, - { status: 'RUNNING' }, - { status: 'READY' }, - { status: 'RUNNING' }, - { status: 'INCOMPLETE' }, - { status: 'READY' }, - { status: 'OFFLINE' }, - { status: 'STOPPED' }, - { status: 'STOPPED' }, - { status: 'RUNNING' } - ] - }; - const expectedResult = [ - { status: 'RUNNING', count: 4 }, - { status: 'READY', count: 2 }, - { status: 'INCOMPLETE', count: 1 }, - { status: 'OFFLINE', count: 1 }, - { status: 'STOPPED', count: 2 } - ]; - const result = getInstanceStatuses(service); - expect(result).toEqual(expectedResult); - }); - - it('does not throw a hissy fit if there are no instances', () => { - const service = { - instances: [] - }; - const expectedResult = []; - const result = getInstanceStatuses(service); - expect(result).toEqual(expectedResult); - }); - }); - - describe('getInstancesActive', () => { - it("returns true if all instances' status is active", () => { - const statuses = [ - { status: 'RUNNING' }, - { status: 'READY' }, - { status: 'ACTIVE' }, - { status: 'RUNNING' } - ]; - const expectedResult = true; - const result = getInstancesActive(statuses); - expect(result).toEqual(expectedResult); - }); - - it("returns false if no instances' status is active", () => { - const statuses = [ - { status: 'STOPPING' }, - { status: 'FAILED' }, - { status: 'UNKNOWN' }, - { status: 'STOPPED' } - ]; - const expectedResult = false; - const result = getInstancesActive(statuses); - expect(result).toEqual(expectedResult); - }); - - it("returns true if some instances' status is active", () => { - const statuses = [ - { status: 'STOPPING' }, - { status: 'FAILED' }, - { status: 'ACTIVE' }, - { status: 'RUNNING' } - ]; - const expectedResult = true; - const result = getInstancesActive(statuses); - expect(result).toEqual(expectedResult); - }); - }); - - describe('getInstancesHealthy', () => { - it('returns the number of healthy instances correctly', () => { - const instances = [ - { healthy: 'HEALTHY' }, - { healthy: 'UNHEALTHY' }, - { healthy: 'MAINTENANCE' }, - { healthy: 'UNKNOWN' }, - { healthy: 'UNAVAILABLE' }, - { healthy: 'HEALTHY' } - ]; - const expectedResult = { total: 6, healthy: 2 }; - const result = getInstancesHealthy(instances); - expect(result).toEqual(expectedResult); - }); - }); - - describe('getService', () => { - it('returns the service decorated with details for display correctly', () => { - const result = getService(nginxService, 0); - expect(result).toEqual(nginxExpectedResult); - }); - - it('returns the consul service decorated with details for display correctly', () => { - const result = getService(consulService, 1); - expect(result).toEqual(consulExpectedResult); - }); - }); - - describe('processServices', () => { - it('returns the services decorated with details for display correctly', () => { - const services = [nginxService, consulService]; - const expectedResult = [nginxExpectedResult, consulExpectedResult]; - const result = processServices(services); - expect(result).toEqual(expectedResult); - }); - - it('removes deleted services', () => { - const services = [ - { - status: 'DELETED' - } - ]; - const expectedResult = []; - const result = processServices(services); - expect(result).toEqual(expectedResult); - }); - }); - - describe('processServicesForTopology', () => { - it('returns the services decorated with details for display correctly', () => { - const services = [ - { - ...nginxService, - id: 'nginx-service-0', - connections: ['consul-service-0', 'consul-service-1'] - }, - { - ...nginxService, - id: 'nginx-service-1' - }, - { - ...consulService, - id: 'consul-service-0', - connections: ['consul-service-1'] - }, - { - ...consulService, - id: 'consul-service-1' - } - ]; - const expectedResult = [ - { - ...nginxExpectedResult, - id: 'nginx-service-0', - connections: ['consul-service-0', 'consul-service-1'], - connected: true, - index: 0 - }, - { - ...nginxExpectedResult, - id: 'nginx-service-1', - connected: false, - index: 1 - }, - { - ...consulExpectedResult, - id: 'consul-service-0', - connections: ['consul-service-1'], - connected: true, - index: 2 - }, - { - ...consulExpectedResult, - id: 'consul-service-1', - connected: true, - index: 3 - } - ]; - const result = processServicesForTopology(services); - expect(result).toEqual(expectedResult); - }); - }); -}); - -const nginxService = { - instances: [ - { status: 'RUNNING', healthy: 'HEALTHY' }, - { status: 'RUNNING', healthy: 'HEALTHY' }, - { status: 'READY', healthy: 'HEALTHY' }, - { status: 'RUNNING', healthy: 'UNHEALTHY' }, - { status: 'INCOMPLETE', healthy: 'UNKNOWN' }, - { status: 'READY', healthy: 'HEALTHY' }, - { status: 'OFFLINE', healthy: 'UNAVAILABLE' }, - { status: 'STOPPED', healthy: 'UNAVAILABLE' }, - { status: 'STOPPED', healthy: 'UNAVAILABLE' }, - { status: 'RUNNING', healthy: 'HEALTHY' } - ], - status: 'ACTIVE', - slug: 'nginx' -}; - -const nginxExpectedResult = { - ...nginxService, - instanceStatuses: [ - { status: 'RUNNING', count: 4 }, - { status: 'READY', count: 2 }, - { status: 'INCOMPLETE', count: 1 }, - { status: 'OFFLINE', count: 1 }, - { status: 'STOPPED', count: 2 } - ], - instancesActive: true, - instancesHealthy: { total: 10, healthy: 5 }, - transitionalStatus: false, - isConsul: false, - index: 0 -}; - -const consulService = { - instances: [ - { status: 'RUNNING', healthy: 'HEALTHY' }, - { status: 'READY', healthy: 'HEALTHY' }, - { status: 'PROVISIONING', healthy: 'UNKNOWN' } - ], - status: 'PROVISIONING', - slug: 'consul' -}; - -const consulExpectedResult = { - ...consulService, - instanceStatuses: [ - { status: 'RUNNING', count: 1 }, - { status: 'READY', count: 1 }, - { status: 'PROVISIONING', count: 1 } - ], - instancesActive: true, - instancesHealthy: { total: 3, healthy: 2 }, - transitionalStatus: true, - isConsul: true, - index: 1 -}; \ No newline at end of file diff --git a/packages/cp-gql-mock-server/.dockerignore b/packages/cp-gql-mock-server/.dockerignore deleted file mode 100644 index 3e3c0c8c..00000000 --- a/packages/cp-gql-mock-server/.dockerignore +++ /dev/null @@ -1,4 +0,0 @@ -node_modules -coverage -.nyc_output -package-lock.json diff --git a/packages/cp-gql-mock-server/.eslintignore b/packages/cp-gql-mock-server/.eslintignore deleted file mode 100644 index 2b7cecf7..00000000 --- a/packages/cp-gql-mock-server/.eslintignore +++ /dev/null @@ -1,2 +0,0 @@ -.nyc_output -coverage \ No newline at end of file diff --git a/packages/cp-gql-mock-server/.eslintrc b/packages/cp-gql-mock-server/.eslintrc deleted file mode 100644 index 14dc524b..00000000 --- a/packages/cp-gql-mock-server/.eslintrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "joyent-portal" -} diff --git a/packages/cp-gql-mock-server/.tern-project b/packages/cp-gql-mock-server/.tern-project deleted file mode 100644 index 02c6bbe0..00000000 --- a/packages/cp-gql-mock-server/.tern-project +++ /dev/null @@ -1,10 +0,0 @@ -{ - "libs": [ - "ecmascript" - ], - "plugins": { - "doc_comment": true, - "local-scope": true, - "node": true - } -} diff --git a/packages/cp-gql-mock-server/CHANGELOG.md b/packages/cp-gql-mock-server/CHANGELOG.md deleted file mode 100644 index 2620f585..00000000 --- a/packages/cp-gql-mock-server/CHANGELOG.md +++ /dev/null @@ -1,13 +0,0 @@ -# Change Log - -All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. - - -## 1.0.4 (2017-05-25) - - - - - -## 1.0.3 (2017-05-25) diff --git a/packages/cp-gql-mock-server/Dockerfile b/packages/cp-gql-mock-server/Dockerfile deleted file mode 100644 index bf3553e0..00000000 --- a/packages/cp-gql-mock-server/Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -FROM quay.io/yldio/alpine-node-containerpilot:latest - -ENV CONTAINERPILOT /etc/containerpilot.json5 - -RUN npm install -g npm@^4 \ - && npm config set loglevel info \ - && yarn add lerna@^2.0.0 serve \ - && ./node_modules/.bin/lerna clean --yes --scope joyent-cp-gql-mock-server --include-filtered-dependencies \ - && ./node_modules/.bin/lerna bootstrap --scope joyent-cp-gql-mock-server --include-filtered-dependencies - -COPY packages/cp-gql-mock-server/etc/containerpilot.json5 ${CONTAINERPILOT} -WORKDIR /opt/app/packages/cp-gql-mock-server - -EXPOSE 3000 -CMD ["/bin/containerpilot"] diff --git a/packages/cp-gql-mock-server/README.md b/packages/cp-gql-mock-server/README.md deleted file mode 100644 index ea68d3d8..00000000 --- a/packages/cp-gql-mock-server/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# cp-gql-mock-server - -[![Docker Repository on Quay](https://quay.io/repository/yldio/joyent-cp-gql-mock-server/status)](https://quay.io/repository/yldio/joyent-cp-gql-mock-server) -[![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0) -[![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg)](https://github.com/RichardLitt/standard-readme) -[![demo master](https://img.shields.io/badge/demo-master-3B47CC.svg)](http://cp-gql-mock-server-master.svc.f4b20699-b323-4452-9091-977895896da6.eu-ams-1.triton.zone:3000/graphiql) -[![demo staging](https://img.shields.io/badge/demo-staging-3B47CC.svg)](http://cp-gql-mock-server-staging.svc.f4b20699-b323-4452-9091-977895896da6.eu-ams-1.triton.zone:3000/graphiql) diff --git a/packages/cp-gql-mock-server/etc/containerpilot.json5 b/packages/cp-gql-mock-server/etc/containerpilot.json5 deleted file mode 100644 index 91b8b2ad..00000000 --- a/packages/cp-gql-mock-server/etc/containerpilot.json5 +++ /dev/null @@ -1,102 +0,0 @@ -{ - consul: 'localhost:8500', - jobs: [ - { - name: 'cp-gql-mock-server', - port: {{.PORT}}, - exec: 'node .', - health: { - exec: '/usr/bin/curl -o /dev/null --fail -s http://localhost:{{.PORT}}/graphiql', - interval: 2, - ttl: 5 - }, - tags: [ - 'traefik.backend=cp-gql-mock-server', - 'traefik.frontend.rule=PathPrefix:/', - 'traefik.frontend.entryPoints=http' - ] - }, - { - name: 'consul-agent', - exec: ['/usr/local/bin/consul', 'agent', - '-data-dir=/data', - '-config-dir=/config', - '-log-level=err', - '-rejoin', - '-retry-join', '{{ .CONSUL | default "consul" }}', - '-retry-max', '10', - '-retry-interval', '10s'], - restarts: 'unlimited' - }, - { - name: 'sensor_memory_usage', - exec: '/bin/sensors memory', - timeout: '5s', - when: { - interval: '5s' - }, - restarts: 'unlimited' - }, - { - name: 'sensor_cpu_load', - exec: '/bin/sensors cpu', - timeout: '5s', - when: { - interval: '5s' - }, - restarts: 'unlimited' - }, - { - name: 'sensor_disk_capacity', - exec: '/bin/sensors diskcapacity', - timeout: '5s', - when: { - interval: '60s' - }, - restarts: 'unlimited' - }, - { - name: 'sensor_disk_usage', - exec: '/bin/sensors diskusage', - timeout: '5s', - when: { - interval: '60s' - }, - restarts: 'unlimited' - } - ], - telemetry: { - port: 9090, - tags: ['op'], - metrics: [ - { - namespace: 'cp_gql_mock_server', - subsystem: 'memory', - name: 'percent', - help: 'Percentage of memory used', - type: 'gauge' - }, - { - namespace: 'cp_gql_mock_server', - subsystem: 'cpu', - name: 'load', - help: 'CPU load', - type: 'gauge' - }, - { - namespace: 'cp_gql_mock_server', - subsystem: 'disk', - name: 'capacity', - help: 'Disk capacity', - type: 'gauge' - }, - { - namespace: 'cp_gql_mock_server', - subsystem: 'disk', - name: 'usage', - help: 'Disk usage', - type: 'gauge' - } - ] - } -} diff --git a/packages/cp-gql-mock-server/package.json b/packages/cp-gql-mock-server/package.json deleted file mode 100644 index e04a9d0b..00000000 --- a/packages/cp-gql-mock-server/package.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "joyent-cp-gql-mock-server", - "version": "1.0.4", - "private": true, - "license": "MPL-2.0", - "repository": "github:yldio/joyent-portal", - "main": "src/index.js", - "scripts": { - "lint": "eslint . --fix", - "lint-ci": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/cp-gql-mock-server.xml", - "test": "NODE_ENV=test nyc --reporter=lcov --reporter=text ava --verbose", - "test-ci": "NODE_ENV=test nyc --report-dir=$CIRCLE_ARTIFACTS/cp-gql-mock-server --reporter=lcov --reporter=text ava --verbose --tap | tap-xunit > $CIRCLE_TEST_REPORTS/test/cp-gql-mock-server.xml", - "start": "node src/index.js", - "dev": "PORT=3000 nodemon src/index.js", - "prepublish": "echo 0" - }, - "dependencies": { - "apr-map": "^1.0.5", - "build-array": "^1.0.0", - "camel-case": "^3.0.0", - "crocket": "^0.9.11", - "deep-object-diff": "^1.0.4", - "force-array": "^3.1.0", - "good": "^7.3.0", - "good-console": "^6.4.0", - "good-squeeze": "^5.0.2", - "graphi": "^3.0.0", - "hapi": "^16.5.2", - "hasha": "^3.0.0", - "joyent-cp-gql-schema": "^1.7.0", - "js-yaml": "^3.9.1", - "lodash.find": "^4.6.0", - "lodash.findindex": "^4.6.0", - "lodash.flatten": "^4.4.0", - "param-case": "^2.1.1" - }, - "devDependencies": { - "apollo-client": "^1.9.2", - "ava": "^0.22.0", - "delay": "^2.0.0", - "eslint": "^4.5.0", - "eslint-config-joyent-portal": "3.0.0", - "execa": "^0.8.0", - "lodash.sortby": "^4.7.0", - "mz": "^2.6.0", - "node-fetch": "^1.7.2", - "nodemon": "^1.11.0", - "nyc": "^11.1.0", - "tap-xunit": "^1.7.0" - }, - "ava": { - "files": ["test/*.js"], - "source": ["src/*.js"], - "failFast": true - } -} diff --git a/packages/cp-gql-mock-server/src/complex-data.json b/packages/cp-gql-mock-server/src/complex-data.json deleted file mode 100644 index 4512b16e..00000000 --- a/packages/cp-gql-mock-server/src/complex-data.json +++ /dev/null @@ -1,2242 +0,0 @@ -{ - "deploymentGroup": { - "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "name": "Complex Microservices", - "slug": "complex-microservices", - "status": "ACTIVE" - }, - "services": [ - { - "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987", - "slug": "accountservice", - "name": "AccountService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE", - "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] - }, - { - "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", - "slug": "addressservice", - "name": "AddressService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "f5606d06-7f4d-45b2-85df-8f4688778f24", - "slug": "bloomreachservice", - "name": "BloomreachService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "7043a0ca-dee6-42d4-856e-ff77c8902479", - "slug": "cartservice", - "name": "CartService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3", - "slug": "extra service reported by containerpilot: cartservice-https", - "name": "Extra service reported by ContainerPilot: CartService-HTTPS", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "3b954132-49fc-405c-9d91-c59b8953d7b8", - "slug": "cctokenizationclientservice", - "name": "CCTokenizationClientService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE", - "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] - }, - { - "id": "0b50ef08-486c-4999-8638-80d8f6a3465c", - "slug": "checkoutservice", - "name": "CheckoutService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "71564ea7-9a9d-4d00-9409-505ef03567fc", - "slug": "colorswatchservice", - "name": "ColorSwatchService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "66babdef-4512-456c-8d16-b6223766da01", - "slug": "emailmarketingservice", - "name": "EmailMarketingService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "21b2b735-1706-49f6-a136-f2910c110e84", - "slug": "favoriteservice", - "name": "FavoriteService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982", - "slug": "findinstoreservice", - "name": "FindInStoreService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE", - "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] - }, - { - "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80", - "slug": "fitpredictorservice", - "name": "FitpredictorService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6", - "slug": "hidefromcatalogservice", - "name": "HidefromcatalogService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "25725be5-6880-438f-9590-7c8cd9606224", - "slug": "internationalcheckoutservice", - "name": "InternationalCheckoutService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "b14f7f85-834b-41fe-866b-571d8a77ab83", - "slug": "internationalposervice", - "name": "InternationalPOService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "de943737-bf8f-4adb-979a-05b083e1b52d", - "slug": "internationalshippingservice", - "name": "InternationalShippingService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE", - "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] - }, - { - "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167", - "slug": "inventoryservice", - "name": "InventoryService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", - "slug": "localizationservice", - "name": "LocalizationService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", - "slug": "moreaccountservice", - "name": "MoreAccountService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", - "slug": "navigationservice", - "name": "NavigationService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "8871105e-ae08-4ebf-81ae-748d6e33941c", - "slug": "ordercreationjob", - "name": "OrderCreationJob", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE", - "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] - }, - { - "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6", - "slug": "orderservice", - "name": "OrderService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274", - "slug": "orderservice", - "name": "OrderService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", - "slug": "paymentmethodservice", - "name": "PaymentMethodService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", - "slug": "paymentservice", - "name": "PaymentService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", - "slug": "paymentservice", - "name": "PaymentService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE", - "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] - }, - { - "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", - "slug": "priceservice", - "name": "PriceService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9", - "slug": "privatesaleservice", - "name": "PrivatesaleService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", - "slug": "productarrayservice", - "name": "ProductArrayService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca", - "slug": "productdetailservice", - "name": "ProductDetailService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6", - "slug": "productservice", - "name": "ProductService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE", - "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] - }, - { - "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", - "slug": "profileservice", - "name": "ProfileService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1", - "slug": "promoservice", - "name": "PromoService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", - "slug": "promotionservice", - "name": "PromotionService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "ecf54138-7d5f-4e5b-9246-7762550e1082", - "slug": "questionanswerservice", - "name": "QuestionanswerService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "8b8a8506-fc87-4464-acac-f98b934ed755", - "slug": "redbaloonservice", - "name": "RedBaloonService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE", - "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] - }, - { - "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", - "slug": - "extra service reported by containerpilot: redbaloonservice-https", - "name": - "Extra service reported by ContainerPilot: RedBaloonService-HTTPS", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "709971c3-794d-42b5-b2dc-42c51db75c41", - "slug": "reviewsservice", - "name": "ReviewsService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444", - "slug": "searchfacetsservice", - "name": "SearchFacetsService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", - "slug": "searchindexservice", - "name": "SearchIndexService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", - "slug": "shoprunnerservice", - "name": "ShopRunnerService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE", - "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] - }, - { - "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0", - "slug": "taxservice", - "name": "TaxService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa", - "slug": "toggleservice", - "name": "ToggleService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48", - "slug": "useraccountservice", - "name": "UserAccountService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c", - "slug": "userauthenticationservice", - "name": "UserAuthenticationService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5", - "slug": "waitlistoverlayservice", - "name": "WaitlistOverlayService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE", - "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] - }, - { - "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", - "slug": "waitlistservice", - "name": "WaitlistService", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a", - "slug": "consul", - "name": "Consul", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - }, - { - "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0", - "slug": "nginx", - "name": "Nginx", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE", - "connections": [ - "e0e3eb8f-2045-4c1a-8f74-8c61660fc987", - "c60b44f3-388d-43dd-9ea8-6ed99a83d767", - "f5606d06-7f4d-45b2-85df-8f4688778f24", - "7043a0ca-dee6-42d4-856e-ff77c8902479", - "31663285-2b58-4f92-b6f5-3ef34591c3a3", - "3b954132-49fc-405c-9d91-c59b8953d7b8", - "0b50ef08-486c-4999-8638-80d8f6a3465c", - "71564ea7-9a9d-4d00-9409-505ef03567fc", - "66babdef-4512-456c-8d16-b6223766da01", - "21b2b735-1706-49f6-a136-f2910c110e84", - "7e6b96d5-648c-44b2-9e5a-34423fc0a982", - "ba9ca60e-8f67-49ae-a834-da244b1e3f80", - "5fffbfde-7f65-46cb-b729-db9cdb1843e6", - "25725be5-6880-438f-9590-7c8cd9606224", - "b14f7f85-834b-41fe-866b-571d8a77ab83", - "de943737-bf8f-4adb-979a-05b083e1b52d", - "dc6e21d4-f0ce-4717-8415-93fd785c7167", - "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", - "d3b47ee2-1755-446d-88d9-3e44a4b404e2", - "339c1174-acd0-4740-a0af-3b0e87d2b2d1", - "8871105e-ae08-4ebf-81ae-748d6e33941c", - "9f2b665b-31a7-49e6-b021-d1767e092aa6", - "bd9fdb62-39ac-4a58-9d83-6b955a938274", - "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", - "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", - "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", - "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", - "760cc6d2-e4c3-4781-923c-8edebe20fbc9", - "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", - "1d2b1206-a025-4717-bc20-ddd0acf14fca", - "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6", - "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", - "693659a1-0d46-49aa-925c-2fcf16c07fc1", - "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", - "ecf54138-7d5f-4e5b-9246-7762550e1082", - "8b8a8506-fc87-4464-acac-f98b934ed755", - "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", - "709971c3-794d-42b5-b2dc-42c51db75c41", - "825f73d0-cbf0-4c9e-ab12-0f53128d2444", - "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", - "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", - "c62413d0-7eb0-4151-9da5-3b331ffafce0", - "8d1e1795-0baa-48da-a173-ca9d145dcffa", - "7728f1ff-ad43-416a-acd5-6d4f506a3f48", - "6126b9a2-0402-4b1d-b7af-6e4486e0973c", - "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5", - "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", - "2540f59b-5f81-4458-94a1-38e6eef5d78a" - ] - }, - { - "id": "5e527d47-7a19-439e-b6bb-32c456bd423c", - "slug": "mongodb", - "name": "MongoDB", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "status": "ACTIVE" - } - ], - "instances": [ - { - "id": "a356f557-67ad-402f-a6ba-f7c719fd853a", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987", - "machineId": "7a94462f-5174-42b2-9029-f7e74001fe1a", - "name": "instance-AccountService-0" - }, - { - "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987", - "machineId": "5ad2f3a8-8720-429b-90f1-c5f118a51f4e", - "name": "instance-AccountService-1" - }, - { - "id": "c700999c-7915-43ca-891e-17c7f9cf6b55", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987", - "machineId": "7ce5d386-42b3-44be-a05d-04a17899e486", - "name": "instance-AccountService-2" - }, - { - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", - "machineId": "b0913e4f-0fc6-4658-839e-400dc3e53cf0", - "name": "instance-AddressService-0" - }, - { - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", - "machineId": "086d8974-b305-4c27-9ad8-f69aa02e1381", - "name": "instance-AddressService-1" - }, - { - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", - "machineId": "eab404b3-2f19-455c-bc82-98b004110162", - "name": "instance-AddressService-2" - }, - { - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", - "machineId": "f9f95eec-793c-4c08-9ec2-0c7082d51e27", - "name": "instance-AddressService-3" - }, - { - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", - "machineId": "2769fdde-3a1c-4f8b-886f-f32b2d40f959", - "name": "instance-AddressService-4" - }, - { - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "f5606d06-7f4d-45b2-85df-8f4688778f24", - "machineId": "f98aa65b-3e60-4b86-a9e6-375bf61171e6", - "name": "instance-BloomreachService-0" - }, - { - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "f5606d06-7f4d-45b2-85df-8f4688778f24", - "machineId": "0f079926-e47d-482c-aad5-88f4949f57e3", - "name": "instance-BloomreachService-1" - }, - { - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "f5606d06-7f4d-45b2-85df-8f4688778f24", - "machineId": "c7b52e3d-ee71-4cf2-97ce-0da074015d20", - "name": "instance-BloomreachService-2" - }, - { - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "f5606d06-7f4d-45b2-85df-8f4688778f24", - "machineId": "8336efdb-07d1-4341-98e9-9de9f5bd729b", - "name": "instance-BloomreachService-3" - }, - { - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7043a0ca-dee6-42d4-856e-ff77c8902479", - "machineId": "e09438d9-966f-4088-a56d-4a9deb9cf30a", - "name": "instance-CartService-0" - }, - { - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7043a0ca-dee6-42d4-856e-ff77c8902479", - "machineId": "e9b2346c-5c57-40ac-9b7a-b0789dabf3ec", - "name": "instance-CartService-1" - }, - { - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7043a0ca-dee6-42d4-856e-ff77c8902479", - "machineId": "7fc260fa-3e62-43c8-beb2-4eb56e63b163", - "name": "instance-CartService-2" - }, - { - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7043a0ca-dee6-42d4-856e-ff77c8902479", - "machineId": "df6355d5-2f1a-4d5e-bbb8-92a13fae0f2d", - "name": "instance-CartService-3" - }, - { - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7043a0ca-dee6-42d4-856e-ff77c8902479", - "machineId": "86604767-e5de-46f0-8409-038ac87e7b4d", - "name": "instance-CartService-4" - }, - { - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "31663285-2b58-4f92-b6f5-3ef34591c3a3", - "machineId": "c9a49cff-4438-460f-bc46-610bfecbddca", - "name": - "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0" - }, - { - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "31663285-2b58-4f92-b6f5-3ef34591c3a3", - "machineId": "4252ddb5-e9b4-4d1e-aa53-6e1bdcdeab30", - "name": - "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1" - }, - { - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "31663285-2b58-4f92-b6f5-3ef34591c3a3", - "machineId": "783c5eb2-2145-4fd2-a22f-274bec3b2ffc", - "name": - "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2" - }, - { - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "31663285-2b58-4f92-b6f5-3ef34591c3a3", - "machineId": "f8a54a11-93f4-4b0a-9c80-be6542393448", - "name": - "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3" - }, - { - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "3b954132-49fc-405c-9d91-c59b8953d7b8", - "machineId": "ec5214d1-fff8-4a29-b05b-506e7f7de178", - "name": "instance-CCTokenizationClientService-0" - }, - { - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "3b954132-49fc-405c-9d91-c59b8953d7b8", - "name": "instance-CCTokenizationClientService-1", - "machineId": "6e28e57f-21c4-486e-bf19-c9171ad454e9" - }, - { - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "3b954132-49fc-405c-9d91-c59b8953d7b8", - "name": "instance-CCTokenizationClientService-2", - "machineId": "9c4c6c41-bacd-4b2e-8bc8-c96c762d5ffc" - }, - { - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "0b50ef08-486c-4999-8638-80d8f6a3465c", - "name": "instance-CheckoutService-0", - "machineId": "7eada63f-fd3c-47d8-84c7-7b2f100ece48" - }, - { - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "0b50ef08-486c-4999-8638-80d8f6a3465c", - "name": "instance-CheckoutService-1", - "machineId": "2546f9cc-82bd-4efd-86a7-f1f9c161f553" - }, - { - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "0b50ef08-486c-4999-8638-80d8f6a3465c", - "name": "instance-CheckoutService-2", - "machineId": "d5916d7b-9e2d-449e-a726-fd6eb679d8dc" - }, - { - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "71564ea7-9a9d-4d00-9409-505ef03567fc", - "name": "instance-ColorSwatchService-0", - "machineId": "fe1bd98d-fbc7-4ae9-bb88-1a08f14d3c3c" - }, - { - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "71564ea7-9a9d-4d00-9409-505ef03567fc", - "name": "instance-ColorSwatchService-1", - "machineId": "019fbce4-48f3-4093-bb5b-cbc57129c6ce" - }, - { - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "71564ea7-9a9d-4d00-9409-505ef03567fc", - "name": "instance-ColorSwatchService-2", - "machineId": "24fc33c1-aaaa-451e-b666-990e730b0e1e" - }, - { - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "71564ea7-9a9d-4d00-9409-505ef03567fc", - "name": "instance-ColorSwatchService-3", - "machineId": "d9a54997-106d-4618-add6-d40139b0d951" - }, - { - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "71564ea7-9a9d-4d00-9409-505ef03567fc", - "name": "instance-ColorSwatchService-4", - "machineId": "2131357d-c850-4fdd-a3b6-8ac350abf59b" - }, - { - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "66babdef-4512-456c-8d16-b6223766da01", - "name": "instance-EmailMarketingService-0", - "machineId": "4d915c72-b436-49ba-a144-f0e98a017888" - }, - { - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "66babdef-4512-456c-8d16-b6223766da01", - "name": "instance-EmailMarketingService-1", - "machineId": "efbc9404-aec8-4aab-a66a-8caef91a8d58" - }, - { - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "66babdef-4512-456c-8d16-b6223766da01", - "name": "instance-EmailMarketingService-2", - "machineId": "5181e8a9-241e-401d-9504-669826345dd1" - }, - { - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "21b2b735-1706-49f6-a136-f2910c110e84", - "name": "instance-FavoriteService-0", - "machineId": "fe775a4a-e081-42c4-a9b8-605f52a6cb69" - }, - { - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "21b2b735-1706-49f6-a136-f2910c110e84", - "name": "instance-FavoriteService-1", - "machineId": "549ba710-03d2-4c7b-a26a-ae19b9684fc2" - }, - { - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "21b2b735-1706-49f6-a136-f2910c110e84", - "name": "instance-FavoriteService-2", - "machineId": "acd9fc0f-9e67-4926-88c9-f824844b67ce" - }, - { - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "21b2b735-1706-49f6-a136-f2910c110e84", - "name": "instance-FavoriteService-3", - "machineId": "8d099a34-07da-4e06-87a0-44039f9cf59f" - }, - { - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "21b2b735-1706-49f6-a136-f2910c110e84", - "name": "instance-FavoriteService-4", - "machineId": "9b5674a0-2b22-4349-850a-fdfd2ca312c2" - }, - { - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7e6b96d5-648c-44b2-9e5a-34423fc0a982", - "name": "instance-FindInStoreService-0", - "machineId": "0ba01fce-6e3c-433c-b341-e9afee0bf252" - }, - { - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7e6b96d5-648c-44b2-9e5a-34423fc0a982", - "name": "instance-FindInStoreService-1", - "machineId": "a61a0d3d-2cae-4ef0-954a-0f005c386eed" - }, - { - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7e6b96d5-648c-44b2-9e5a-34423fc0a982", - "name": "instance-FindInStoreService-2", - "machineId": "4be8670e-2ea5-4fc5-80c3-29cc0fab5f8d" - }, - { - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ba9ca60e-8f67-49ae-a834-da244b1e3f80", - "name": "instance-FitpredictorService-0", - "machineId": "81b0904b-637e-4ead-8092-353f062ad614" - }, - { - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ba9ca60e-8f67-49ae-a834-da244b1e3f80", - "name": "instance-FitpredictorService-1", - "machineId": "007d9c65-40c5-482d-8ee8-b9ec75d522a6" - }, - { - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ba9ca60e-8f67-49ae-a834-da244b1e3f80", - "name": "instance-FitpredictorService-2", - "machineId": "49d90976-e8ec-467b-ae78-70bd5332f24d" - }, - { - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ba9ca60e-8f67-49ae-a834-da244b1e3f80", - "name": "instance-FitpredictorService-3", - "machineId": "2f58f000-99a1-41fd-a6f3-23610c935eaa" - }, - { - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "5fffbfde-7f65-46cb-b729-db9cdb1843e6", - "name": "instance-HidefromcatalogService-0", - "machineId": "37fb72ed-bb1c-405a-a01c-950b1d62fd44" - }, - { - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "5fffbfde-7f65-46cb-b729-db9cdb1843e6", - "name": "instance-HidefromcatalogService-1", - "machineId": "da0da055-9067-4159-bf2a-bbe7bca13dc2" - }, - { - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "5fffbfde-7f65-46cb-b729-db9cdb1843e6", - "name": "instance-HidefromcatalogService-2", - "machineId": "1fc8dc72-aa74-490d-873a-121554f25109" - }, - { - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "5fffbfde-7f65-46cb-b729-db9cdb1843e6", - "name": "instance-HidefromcatalogService-3", - "machineId": "75de8a2f-bec8-4dab-b046-b1aa8ad3d2e4" - }, - { - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "25725be5-6880-438f-9590-7c8cd9606224", - "name": "instance-InternationalCheckoutService-0", - "machineId": "6242323a-f3c1-40f0-81b4-284ad1fa238f" - }, - { - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "25725be5-6880-438f-9590-7c8cd9606224", - "name": "instance-InternationalCheckoutService-1", - "machineId": "ccef4c0d-3608-4bad-9127-fda2932ee78a" - }, - { - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "25725be5-6880-438f-9590-7c8cd9606224", - "name": "instance-InternationalCheckoutService-2", - "machineId": "c9de38ac-22bc-40ed-9ff2-b8afc3175d47" - }, - { - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "25725be5-6880-438f-9590-7c8cd9606224", - "name": "instance-InternationalCheckoutService-3", - "machineId": "afdc3777-df66-4772-961a-34fe4910fec6" - }, - { - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "25725be5-6880-438f-9590-7c8cd9606224", - "name": "instance-InternationalCheckoutService-4", - "machineId": "51190835-8e73-45eb-a2c3-b349a45b1248" - }, - { - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "b14f7f85-834b-41fe-866b-571d8a77ab83", - "name": "instance-InternationalPOService-0", - "machineId": "b2366748-e22e-4962-9808-0c00e76fe883" - }, - { - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "b14f7f85-834b-41fe-866b-571d8a77ab83", - "name": "instance-InternationalPOService-1", - "machineId": "dae58381-7f28-44c8-9b8e-0496f2dd6974" - }, - { - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "b14f7f85-834b-41fe-866b-571d8a77ab83", - "name": "instance-InternationalPOService-2", - "machineId": "d9a88b5c-9033-47a4-b729-75945c65af52" - }, - { - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "b14f7f85-834b-41fe-866b-571d8a77ab83", - "name": "instance-InternationalPOService-3", - "machineId": "c5b5eede-0062-4036-9b2a-e6668b742336" - }, - { - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "de943737-bf8f-4adb-979a-05b083e1b52d", - "name": "instance-InternationalShippingService-0", - "machineId": "d6db9222-bf82-4c80-8572-08c7bfc91077" - }, - { - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "de943737-bf8f-4adb-979a-05b083e1b52d", - "name": "instance-InternationalShippingService-1", - "machineId": "d9ebdf82-d73a-438b-9465-e82fc8bb575e" - }, - { - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "de943737-bf8f-4adb-979a-05b083e1b52d", - "name": "instance-InternationalShippingService-2", - "machineId": "dc63df5d-7496-4585-a7f8-dcd1f2218c0f" - }, - { - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "de943737-bf8f-4adb-979a-05b083e1b52d", - "name": "instance-InternationalShippingService-3", - "machineId": "dadbf32d-f51d-4f23-aedf-5e604b869958" - }, - { - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "dc6e21d4-f0ce-4717-8415-93fd785c7167", - "name": "instance-InventoryService-0", - "machineId": "a27e578a-9a20-4d76-9555-6e7acb2928af" - }, - { - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "dc6e21d4-f0ce-4717-8415-93fd785c7167", - "name": "instance-InventoryService-1", - "machineId": "5a1b6519-8608-4579-8860-1798b1744413" - }, - { - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "dc6e21d4-f0ce-4717-8415-93fd785c7167", - "name": "instance-InventoryService-2", - "machineId": "f35becf4-fa3c-4af3-9412-8250e0aa5381" - }, - { - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "dc6e21d4-f0ce-4717-8415-93fd785c7167", - "name": "instance-InventoryService-3", - "machineId": "c09e4729-fee5-4c77-b589-014c85331987" - }, - { - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", - "name": "instance-LocalizationService-0", - "machineId": "328876ea-8774-4d87-b523-c6a3410dc5c5" - }, - { - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", - "name": "instance-LocalizationService-1", - "machineId": "009cc3dc-a378-47ef-ab44-7c8f79e01007" - }, - { - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", - "name": "instance-LocalizationService-2", - "machineId": "25959dc2-862c-46f7-b59d-06569585f3e8" - }, - { - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", - "name": "instance-LocalizationService-3", - "machineId": "e7988ff9-2cf8-4d74-995f-4ace9e8d1971" - }, - { - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", - "name": "instance-MoreAccountService-0", - "machineId": "e20c9221-0ff5-498c-afa3-0828ee3c54c0" - }, - { - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", - "name": "instance-MoreAccountService-1", - "machineId": "d7dcdc8e-63c1-4d6b-8057-c5b43df376d3" - }, - { - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", - "name": "instance-MoreAccountService-2", - "machineId": "7ddee330-71be-4f15-b4d0-016ab587a90b" - }, - { - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", - "name": "instance-MoreAccountService-3", - "machineId": "39db7636-8986-40f9-aa62-9d471afd8d2e" - }, - { - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", - "name": "instance-MoreAccountService-4", - "machineId": "c0d0f9f3-933d-4e22-9b92-89db0068d9e4" - }, - { - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", - "name": "instance-NavigationService-0", - "machineId": "8317d214-2aa9-4061-be02-2d7e773ee778" - }, - { - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", - "name": "instance-NavigationService-1", - "machineId": "004bf8a2-22fe-4ac5-8875-f3f92241fcfa" - }, - { - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", - "name": "instance-NavigationService-2", - "machineId": "2734c9b8-5551-4d62-910b-d56c2e7702cf" - }, - { - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", - "name": "instance-NavigationService-3", - "machineId": "1eca43b9-2bb0-4b85-af65-70e6a3a93d98" - }, - { - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", - "name": "instance-NavigationService-4", - "machineId": "1036dd0a-2ac5-4c39-9678-442b41b5b66b" - }, - { - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8871105e-ae08-4ebf-81ae-748d6e33941c", - "name": "instance-OrderCreationJob-0", - "machineId": "0e0430e8-3c0b-49e8-ad21-cba0aa2aba3d" - }, - { - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8871105e-ae08-4ebf-81ae-748d6e33941c", - "name": "instance-OrderCreationJob-1", - "machineId": "983f5a54-d7a0-4976-923e-62e0fb4c560f" - }, - { - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8871105e-ae08-4ebf-81ae-748d6e33941c", - "name": "instance-OrderCreationJob-2", - "machineId": "ec8b9feb-22ca-4e89-847f-0f0c3a464860" - }, - { - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8871105e-ae08-4ebf-81ae-748d6e33941c", - "name": "instance-OrderCreationJob-3", - "machineId": "fa34f03c-7d28-40ba-9bf9-95cbf21b25cf" - }, - { - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8871105e-ae08-4ebf-81ae-748d6e33941c", - "name": "instance-OrderCreationJob-4", - "machineId": "c0b1fdd2-8d6f-46f1-b359-214d7500d70e" - }, - { - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "9f2b665b-31a7-49e6-b021-d1767e092aa6", - "name": "instance-OrderService-0", - "machineId": "03524b3f-f7de-4433-9b00-d2c1ca38cfb2" - }, - { - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "9f2b665b-31a7-49e6-b021-d1767e092aa6", - "name": "instance-OrderService-1", - "machineId": "c09b7477-ee9a-42f0-aa60-4e5d092812b5" - }, - { - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "9f2b665b-31a7-49e6-b021-d1767e092aa6", - "name": "instance-OrderService-2", - "machineId": "ecca8837-37b7-458b-a05b-74a5752a2315" - }, - { - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "bd9fdb62-39ac-4a58-9d83-6b955a938274", - "name": "instance-OrderService-0", - "machineId": "510a8c12-e752-4f2c-9670-c03a15503796" - }, - { - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "bd9fdb62-39ac-4a58-9d83-6b955a938274", - "name": "instance-OrderService-1", - "machineId": "e313aa06-ac32-46da-9010-cee561578c59" - }, - { - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "bd9fdb62-39ac-4a58-9d83-6b955a938274", - "name": "instance-OrderService-2", - "machineId": "aa7d299c-a589-4cc4-8e39-42097e6dce17" - }, - { - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "bd9fdb62-39ac-4a58-9d83-6b955a938274", - "name": "instance-OrderService-3", - "machineId": "1f908042-c694-4e31-a678-acd1ec165644" - }, - { - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", - "name": "instance-PaymentMethodService-0", - "machineId": "ac777422-423d-450a-acf0-2a42d4c1f157" - }, - { - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", - "name": "instance-PaymentMethodService-1", - "machineId": "f2ba162f-9e11-4ceb-abdc-8d9fbbc135cb" - }, - { - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", - "name": "instance-PaymentMethodService-2", - "machineId": "d1c99e98-8924-479c-832f-de15c316c05e" - }, - { - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", - "name": "instance-PaymentMethodService-3", - "machineId": "c5667348-c39e-41e9-91f9-b92cd307ff64" - }, - { - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", - "name": "instance-PaymentMethodService-4", - "machineId": "9bf197fe-4d56-4347-ad34-85bcf8f05d77" - }, - { - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", - "name": "instance-PaymentService-0", - "machineId": "84a339a3-8b1f-42fe-9d71-5fc43af7efb9" - }, - { - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", - "name": "instance-PaymentService-1", - "machineId": "40044bd9-fa29-47be-acf7-aafa2e3abe71" - }, - { - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", - "name": "instance-PaymentService-2", - "machineId": "3d885b0c-79b7-44d2-b418-cbbe2025f0fa" - }, - { - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", - "name": "instance-PaymentService-3", - "machineId": "39ddada7-151f-4786-b81f-26dd8ff4cef8" - }, - { - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", - "name": "instance-PaymentService-0", - "machineId": "266048f5-3d0b-4955-a1d5-a63273bbff07" - }, - { - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", - "name": "instance-PaymentService-1", - "machineId": "0f8334e4-50ad-47a1-8fc8-00095798eb91" - }, - { - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", - "name": "instance-PaymentService-2", - "machineId": "97791e82-627a-46a6-998d-a70bff7ee278" - }, - { - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", - "name": "instance-PaymentService-3", - "machineId": "c7676607-ece9-474c-a620-ebfdea63e284" - }, - { - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", - "name": "instance-PriceService-0", - "machineId": "5f78a2b3-eea8-4e0e-b41a-2de9ec2bbee3" - }, - { - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", - "name": "instance-PriceService-1", - "machineId": "69c8da0e-dcc6-4a49-901f-1c26d78e1083" - }, - { - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", - "name": "instance-PriceService-2", - "machineId": "684f61e1-e87a-4fcf-819b-97e8ab0d53b5" - }, - { - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", - "name": "instance-PriceService-3", - "machineId": "bb776fb1-f554-4702-9389-b20672f1ba47" - }, - { - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "760cc6d2-e4c3-4781-923c-8edebe20fbc9", - "name": "instance-PrivatesaleService-0", - "machineId": "b5eef5e0-be43-40be-a0ff-5d2dee072d37" - }, - { - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "760cc6d2-e4c3-4781-923c-8edebe20fbc9", - "name": "instance-PrivatesaleService-1", - "machineId": "62f71598-1db7-4a03-8f70-09c2fef48c51" - }, - { - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "760cc6d2-e4c3-4781-923c-8edebe20fbc9", - "name": "instance-PrivatesaleService-2", - "machineId": "085ea830-c7cb-4956-a867-cc574526465a" - }, - { - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "760cc6d2-e4c3-4781-923c-8edebe20fbc9", - "name": "instance-PrivatesaleService-3", - "machineId": "07bddd94-bc76-40bb-a639-65f8f39ac4a6" - }, - { - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", - "name": "instance-ProductArrayService-0", - "machineId": "9923fd69-69bf-450a-bb53-e34b9cda7951" - }, - { - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", - "name": "instance-ProductArrayService-1", - "machineId": "36296795-b50b-449c-b494-3d53f3aebde8" - }, - { - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", - "name": "instance-ProductArrayService-2", - "machineId": "f1b7ca63-4511-4fcf-974f-985e7b212ce3" - }, - { - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", - "name": "instance-ProductArrayService-3", - "machineId": "9ba3229c-d24e-45dc-ba8f-6b8f6942b887" - }, - { - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", - "name": "instance-ProductArrayService-4", - "machineId": "ac5028c0-d8e3-4550-ae38-0f40bec5133f" - }, - { - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "1d2b1206-a025-4717-bc20-ddd0acf14fca", - "name": "instance-ProductDetailService-0", - "machineId": "495f234d-846a-45af-a9d1-a8c0b0010396" - }, - { - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "1d2b1206-a025-4717-bc20-ddd0acf14fca", - "name": "instance-ProductDetailService-1", - "machineId": "01106446-1320-420f-a486-8195f4755b43" - }, - { - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "1d2b1206-a025-4717-bc20-ddd0acf14fca", - "name": "instance-ProductDetailService-2", - "machineId": "1ae6f186-d9ee-487b-ba5f-35549395b2b8" - }, - { - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "1d2b1206-a025-4717-bc20-ddd0acf14fca", - "name": "instance-ProductDetailService-3", - "machineId": "107e3f9a-c63f-4a78-999d-dce5932cc206" - }, - { - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "1d2b1206-a025-4717-bc20-ddd0acf14fca", - "name": "instance-ProductDetailService-4", - "machineId": "2f8fc356-8d85-446c-848b-ae383388b6ab" - }, - { - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6", - "name": "instance-ProductService-0", - "machineId": "94455b1b-6fb9-4442-b1d3-9e91cef30e2e" - }, - { - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6", - "name": "instance-ProductService-1", - "machineId": "7abfe76d-7b8a-4a4d-9e75-e296ba7e0e25" - }, - { - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6", - "name": "instance-ProductService-2", - "machineId": "2e733d49-fb55-42b5-8117-699608dd1bf9" - }, - { - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", - "name": "instance-ProfileService-0", - "machineId": "e27097a6-d7e6-4541-b9b2-22e7bcf9091f" - }, - { - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", - "name": "instance-ProfileService-1", - "machineId": "73e64de6-0d37-4eb5-8c49-fa32311b4f7c" - }, - { - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", - "name": "instance-ProfileService-2", - "machineId": "be83bd3e-13fb-4a1b-98cc-0839ec80d11d" - }, - { - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", - "name": "instance-ProfileService-3", - "machineId": "f0683944-7392-4801-b474-fe78ca61a91b" - }, - { - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "693659a1-0d46-49aa-925c-2fcf16c07fc1", - "name": "instance-PromoService-0", - "machineId": "06a5c1be-646c-480e-96a8-8620fd221b03" - }, - { - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "693659a1-0d46-49aa-925c-2fcf16c07fc1", - "name": "instance-PromoService-1", - "machineId": "5bf90ba8-c3e7-4fc2-a0aa-4b245367f70e" - }, - { - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "693659a1-0d46-49aa-925c-2fcf16c07fc1", - "name": "instance-PromoService-2", - "machineId": "399e7051-8b61-4ef9-a7da-ed1e33ca0fa1" - }, - { - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", - "name": "instance-PromotionService-0", - "machineId": "c6def1eb-c4c5-4915-a664-1e54a4d27ab2" - }, - { - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", - "name": "instance-PromotionService-1", - "machineId": "986aaa77-ebf4-4404-be8c-43850df29ae6" - }, - { - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", - "name": "instance-PromotionService-2", - "machineId": "7802a82e-d529-4c91-9961-510a4aa310a0" - }, - { - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", - "name": "instance-PromotionService-3", - "machineId": "abafc915-b56c-4d2e-8ed2-2d3770212a0a" - }, - { - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", - "name": "instance-PromotionService-4", - "machineId": "a12f36bb-0939-493b-b59f-7c6b2c45b979" - }, - { - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ecf54138-7d5f-4e5b-9246-7762550e1082", - "name": "instance-QuestionanswerService-0", - "machineId": "1e284cf3-e996-4487-b357-25db82a65938" - }, - { - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ecf54138-7d5f-4e5b-9246-7762550e1082", - "name": "instance-QuestionanswerService-1", - "machineId": "4dc23279-7bf0-48c2-8d09-ce15e41f7a50" - }, - { - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ecf54138-7d5f-4e5b-9246-7762550e1082", - "name": "instance-QuestionanswerService-2", - "machineId": "a4aa9d5b-5674-4796-bb33-0314c053facc" - }, - { - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "ecf54138-7d5f-4e5b-9246-7762550e1082", - "name": "instance-QuestionanswerService-3", - "machineId": "db675533-f542-4bba-a977-c3a12d0609f4" - }, - { - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8b8a8506-fc87-4464-acac-f98b934ed755", - "name": "instance-RedBaloonService-0", - "machineId": "839d2461-cb78-4072-a81f-bba16a49fc89" - }, - { - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8b8a8506-fc87-4464-acac-f98b934ed755", - "name": "instance-RedBaloonService-1", - "machineId": "f07ea401-edb9-4140-a57c-6f21864895c6" - }, - { - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8b8a8506-fc87-4464-acac-f98b934ed755", - "name": "instance-RedBaloonService-2", - "machineId": "15451e87-4a2c-41de-ae45-5188ea3763e9" - }, - { - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", - "name": - "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0", - "machineId": "20f5bf63-c7d7-4b80-bbe0-63dd744f1b72" - }, - { - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", - "name": - "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1", - "machineId": "bf10d972-17e0-4267-908e-4a8184d7c164" - }, - { - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", - "name": - "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2", - "machineId": "d7204a39-5005-4925-a2d5-02afbb2457db" - }, - { - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", - "name": - "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3", - "machineId": "80dac6f7-e459-4f42-b824-5abdd6f13d41" - }, - { - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", - "name": - "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4", - "machineId": "dbb819d5-9df2-48e1-8412-7cd48ca4c186" - }, - { - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "709971c3-794d-42b5-b2dc-42c51db75c41", - "name": "instance-ReviewsService-0", - "machineId": "708e3623-0cbf-4dff-89b5-8b4dc06e56bf" - }, - { - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "709971c3-794d-42b5-b2dc-42c51db75c41", - "name": "instance-ReviewsService-1", - "machineId": "2771dc39-4fa3-41ef-80bd-4522165ff428" - }, - { - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "709971c3-794d-42b5-b2dc-42c51db75c41", - "name": "instance-ReviewsService-2", - "machineId": "fcba67fb-5119-4fb0-9d2d-8cb877464d98" - }, - { - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "709971c3-794d-42b5-b2dc-42c51db75c41", - "name": "instance-ReviewsService-3", - "machineId": "85ff21d8-15a6-4e76-8b7d-656c53656ba4" - }, - { - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "709971c3-794d-42b5-b2dc-42c51db75c41", - "name": "instance-ReviewsService-4", - "machineId": "b8a3a53f-f1c3-4796-b2b8-85b96b6a96a4" - }, - { - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "825f73d0-cbf0-4c9e-ab12-0f53128d2444", - "name": "instance-SearchFacetsService-0", - "machineId": "b9dbbeaa-c1f5-468f-89ac-f04b98a931ce" - }, - { - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "825f73d0-cbf0-4c9e-ab12-0f53128d2444", - "name": "instance-SearchFacetsService-1", - "machineId": "683e9733-adb6-4e5f-bdce-eea7027b6173" - }, - { - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "825f73d0-cbf0-4c9e-ab12-0f53128d2444", - "name": "instance-SearchFacetsService-2", - "machineId": "0215a196-9fea-4197-a478-1f0191fde5c2" - }, - { - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", - "name": "instance-SearchIndexService-0", - "machineId": "dabb9629-7844-4e0b-ab9b-9657de583864" - }, - { - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", - "name": "instance-SearchIndexService-1", - "machineId": "7a52ffd7-460b-4e23-92a2-e405d3ac9c6c" - }, - { - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", - "name": "instance-SearchIndexService-2", - "machineId": "307f023d-519e-4cfc-845f-9fda283bc766" - }, - { - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", - "name": "instance-SearchIndexService-3", - "machineId": "01750ab3-f20c-4077-8453-3a99025f846e" - }, - { - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", - "name": "instance-ShopRunnerService-0", - "machineId": "51a1bdc0-e282-4e8f-b2aa-b3f663fe4e64" - }, - { - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", - "name": "instance-ShopRunnerService-1", - "machineId": "5f66cadd-4d6e-497d-ac32-258b5e70d36c" - }, - { - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", - "name": "instance-ShopRunnerService-2", - "machineId": "ec91237d-5052-49ad-be25-d55b8be15f75" - }, - { - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", - "name": "instance-ShopRunnerService-3", - "machineId": "06e22fb5-e6c0-43cd-806c-32c308f54687" - }, - { - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", - "name": "instance-ShopRunnerService-4", - "machineId": "aba0f29a-664b-4455-b51d-8d4f61c7f936" - }, - { - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "c62413d0-7eb0-4151-9da5-3b331ffafce0", - "name": "instance-TaxService-0", - "machineId": "b723da71-3441-4a0d-962f-13be9fc87f12" - }, - { - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "c62413d0-7eb0-4151-9da5-3b331ffafce0", - "name": "instance-TaxService-1", - "machineId": "3625f022-5b5e-4d46-b580-fcd3ca11f013" - }, - { - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "c62413d0-7eb0-4151-9da5-3b331ffafce0", - "name": "instance-TaxService-2", - "machineId": "291f11b6-141a-4416-8e41-a9eec2d70514" - }, - { - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "c62413d0-7eb0-4151-9da5-3b331ffafce0", - "name": "instance-TaxService-3", - "machineId": "d3b4eb5b-ff7b-44f7-ad5a-6d07e7d688c3" - }, - { - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "c62413d0-7eb0-4151-9da5-3b331ffafce0", - "name": "instance-TaxService-4", - "machineId": "790e4bb5-f089-42cd-8e86-b9645eed618a" - }, - { - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8d1e1795-0baa-48da-a173-ca9d145dcffa", - "name": "instance-ToggleService-0", - "machineId": "4d4cb469-20d3-44d1-91d3-40d7805c84ac" - }, - { - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8d1e1795-0baa-48da-a173-ca9d145dcffa", - "name": "instance-ToggleService-1", - "machineId": "5fe7ceca-b886-4248-9808-7eb6ed46515f" - }, - { - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8d1e1795-0baa-48da-a173-ca9d145dcffa", - "name": "instance-ToggleService-2", - "machineId": "d279a63f-9471-4078-90a0-9d59bbd374f5" - }, - { - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "8d1e1795-0baa-48da-a173-ca9d145dcffa", - "name": "instance-ToggleService-3", - "machineId": "99185403-e804-443f-9ede-014d5f4006ac" - }, - { - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7728f1ff-ad43-416a-acd5-6d4f506a3f48", - "name": "instance-UserAccountService-0", - "machineId": "44b454b1-cc8b-4a8d-95d9-b5939a00a9bd" - }, - { - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7728f1ff-ad43-416a-acd5-6d4f506a3f48", - "name": "instance-UserAccountService-1", - "machineId": "f57ba43d-159b-4c61-91c3-1f5d29d74a7a" - }, - { - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7728f1ff-ad43-416a-acd5-6d4f506a3f48", - "name": "instance-UserAccountService-2", - "machineId": "fca15f53-b425-47f0-863d-e338982122e7" - }, - { - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "7728f1ff-ad43-416a-acd5-6d4f506a3f48", - "name": "instance-UserAccountService-3", - "machineId": "22e70edc-1813-41ad-ab5e-1bef4eb5912e" - }, - { - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "6126b9a2-0402-4b1d-b7af-6e4486e0973c", - "name": "instance-UserAuthenticationService-0", - "machineId": "23368713-1e27-42e9-a842-b6555ba2c7be" - }, - { - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "6126b9a2-0402-4b1d-b7af-6e4486e0973c", - "name": "instance-UserAuthenticationService-1", - "machineId": "f432cc77-91a8-42e5-baa3-4b64405dd83f" - }, - { - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "6126b9a2-0402-4b1d-b7af-6e4486e0973c", - "name": "instance-UserAuthenticationService-2", - "machineId": "16e5550f-c09d-4bad-89bb-3628c5576bbe" - }, - { - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "6126b9a2-0402-4b1d-b7af-6e4486e0973c", - "name": "instance-UserAuthenticationService-3", - "machineId": "5760762c-eea2-4d96-abdb-eae263111d83" - }, - { - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5", - "name": "instance-WaitlistOverlayService-0", - "machineId": "51f541e1-4e82-4e16-907d-6aeb113f394c" - }, - { - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5", - "name": "instance-WaitlistOverlayService-1", - "machineId": "d9bac0ca-3e98-4afb-b426-3c17bab35d45" - }, - { - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5", - "name": "instance-WaitlistOverlayService-2", - "machineId": "600fada5-2369-477f-b22d-18a79653109f" - }, - { - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", - "name": "instance-WaitlistService-0", - "machineId": "ece4ae8e-c5c4-40c2-8d28-594d7015fd36" - }, - { - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", - "name": "instance-WaitlistService-1", - "machineId": "214b9f77-c6ec-446c-a20c-0b7e0e5bbf98" - }, - { - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", - "name": "instance-WaitlistService-2", - "machineId": "f4a0a162-2093-4481-b6c6-f8728600cd03" - }, - { - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", - "name": "instance-WaitlistService-3", - "machineId": "8319135d-3568-42f3-8df4-550615639ff1" - }, - { - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", - "name": "instance-WaitlistService-4", - "machineId": "d178d330-b864-4985-b245-8dc1c1eb7d54" - }, - { - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "2540f59b-5f81-4458-94a1-38e6eef5d78a", - "name": "instance-Consul-0", - "machineId": "5581072a-bd07-4d44-bd9d-86f23e421e6b" - }, - { - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "2540f59b-5f81-4458-94a1-38e6eef5d78a", - "name": "instance-Consul-1", - "machineId": "4bf8e8b8-ea02-482f-b832-9e29428e96af" - }, - { - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "2540f59b-5f81-4458-94a1-38e6eef5d78a", - "name": "instance-Consul-2", - "machineId": "d678775c-4921-4a58-80e7-d2c787db73f9" - }, - { - "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0", - "name": "instance-Nginx-0", - "machineId": "7a2cc743-3dec-497d-a4e0-04a1238997cb" - }, - { - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "5e527d47-7a19-439e-b6bb-32c456bd423c", - "name": "instance-MongoDB-0", - "machineId": "290c2f89-4d03-46dd-a637-d9c4d3d64a7b" - }, - { - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "5e527d47-7a19-439e-b6bb-32c456bd423c", - "name": "instance-MongoDB-1", - "machineId": "b40d9796-ebfd-4926-972d-9a65ec03fda4" - }, - { - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", - "serviceId": "5e527d47-7a19-439e-b6bb-32c456bd423c", - "name": "instance-MongoDB-2", - "machineId": "a8137828-e1de-40ef-8714-b94c0bec24cb" - } - ] -} diff --git a/packages/cp-gql-mock-server/src/cp-data.json b/packages/cp-gql-mock-server/src/cp-data.json deleted file mode 100644 index 70d9cfad..00000000 --- a/packages/cp-gql-mock-server/src/cp-data.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "deploymentGroup": { - "id": "24b16df5-7553-45d9-ab7f-62d541764b67", - "name": "cpexample", - "slug": "cpexample", - "imported": true, - "status": "ACTIVE" - }, - "services": [ - { - "id": "af6a5cd2-291f-490b-bf3b-141b010635db", - "name": "frontend", - "slug": "frontend", - "status": "ACTIVE", - "branches": [], - "connections": ["aea06a05-830a-46d3-bdc1-9dcba97303de"], - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67" - }, - { - "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "name": "mysql", - "slug": "mysql", - "status": "ACTIVE", - "branches": [ - { - "name": "mysql-primary", - "slug": "mysql-primary", - "instances": ["1188dfa0-efac-4142-8a6d-615841dc04e7"], - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67" - }, - { - "name": "mysql", - "slug": "mysql", - "instances": [ - "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b", - "3ec9132f-9093-4644-a2fd-a9749d0011ca", - "6e460ff1-7bc3-4c9b-b093-f37b1134f37b", - "991cbab5-b773-4651-b5b9-b95c299cf50f" - ], - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67" - } - ], - "connections": [], - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67" - }, - { - "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4", - "name": "producer", - "slug": "producer", - "status": "ACTIVE", - "branches": [], - "connections": [ - "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1" - ], - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67" - }, - { - "id": "aea06a05-830a-46d3-bdc1-9dcba97303de", - "name": "api", - "slug": "api", - "status": "ACTIVE", - "branches": [], - "connections": [ - "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4" - ], - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67" - }, - { - "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a", - "name": "consul", - "slug": "consul", - "status": "ACTIVE", - "branches": [], - "connections": [], - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67" - } - ], - "instances": [ - { - "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e", - "status": "RUNNING", - "healthy": "UNKNOWN", - "__typename": "Instance", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "af6a5cd2-291f-490b-bf3b-141b010635db", - "machineId": "c5da7ba6-c544-4f78-9dcc-4ae418a08ed2", - "name": "frontend-0" - }, - { - "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d", - "status": "FAILED", - "healthy": "UNAVAILABLE", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "af6a5cd2-291f-490b-bf3b-141b010635db", - "machineId": "4be909bb-1ee1-4503-a5d0-62e3d460bb93", - "name": "frontend-1" - }, - { - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "machineId": "45d1ce78-900b-402d-9553-858e4ec55b87", - "name": "mysql-1" - }, - { - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "machineId": "11d2c82a-6092-4cac-a97a-bec81bbaffdf", - "name": "mysql-2" - }, - { - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "machineId": "4a58eab4-3bb6-49c6-aaeb-45a7a9310af0", - "name": "mysql-3" - }, - { - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "machineId": "9f6c637f-0ef5-464c-b278-55c3cf2a76f5", - "name": "mysql-4" - }, - { - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "machineId": "7dd8b110-dbea-43a4-9643-316ed2a053bd", - "name": "mysql-5" - }, - { - "id": "1e3dc868-8738-41b3-a70f-ea332823429c", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4", - "machineId": "76d03576-787b-4ac9-85e7-3e6e5ea5b60c", - "name": "producer-0" - }, - { - "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e", - "status": "RUNNING", - "healthy": "UNKNOWN", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "aea06a05-830a-46d3-bdc1-9dcba97303de", - "machineId": "949c82eb-b6bf-47e0-a7e5-d3edbc7299be", - "name": "api-0" - }, - { - "id": "c9698959-eaa2-4b32-9333-fc2591702cf7", - "status": "RUNNING", - "healthy": "UNAVAILABLE", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a", - "machineId": "65b286a1-66f6-4c42-bdd5-0fdb986bfbf3", - "name": "consul-0" - } - ] -} diff --git a/packages/cp-gql-mock-server/src/data.json b/packages/cp-gql-mock-server/src/data.json deleted file mode 100644 index fc3d2ce9..00000000 --- a/packages/cp-gql-mock-server/src/data.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "datacenter": { - "id": "e84d14cc-5b49-4b4e-83ce-ae82e3994c44", - "region": "us-east-1", - "name": "US East 1" - }, - "portal": { - "id": "296a92bf-65cd-4787-b5a7-444489a31e04", - "user": { - "id": "daf18f20-60c3-4a17-a61e-b5aa60f9e43e", - "login": "juditgreskovits", - "firstName": "Judit", - "lastName": "Greskovits", - "email": "name@email.com" - } - } -} diff --git a/packages/cp-gql-mock-server/src/index.js b/packages/cp-gql-mock-server/src/index.js deleted file mode 100644 index 1cd5bdc4..00000000 --- a/packages/cp-gql-mock-server/src/index.js +++ /dev/null @@ -1,74 +0,0 @@ -const schema = require('joyent-cp-gql-schema'); -const graphi = require('graphi'); -const Good = require('good'); -const Hapi = require('hapi'); -const resolvers = require('./resolvers'); - -const server = new Hapi.Server({ - debug: { - log: ['error'], - request: ['error'] - } -}); - -const handlerError = err => { - if (err) { - // eslint-disable-next-line no-console - console.error(err); - process.exit(1); - } -}; - -server.connection({ - port: process.env.PORT, - routes: { - cors: true - } -}); - -server.register( - [ - { - register: Good, - options: { - reporters: { - console: [ - { - module: 'good-squeeze', - name: 'Squeeze', - args: [{ log: '*', response: '*' }] - }, - { - module: 'good-console' - }, - 'stdout' - ] - } - } - }, - { - register: graphi, - options: { - graphqlPath: '/api/graphql', - graphiqlPath: '/api/graphiql', - schema, - resolvers - } - } - ], - err => { - handlerError(err); - - // eslint-disable-next-line no-console - console.log('starting server', { - port: process.env.PORT, - pid: process.pid - }); - - server.start(err => { - handlerError(err); - // eslint-disable-next-line no-console - console.log(`server started at http://0.0.0.0:${server.info.port}`); - }); - } -); diff --git a/packages/cp-gql-mock-server/src/metric-data.json b/packages/cp-gql-mock-server/src/metric-data.json deleted file mode 100644 index fe6f6e81..00000000 --- a/packages/cp-gql-mock-server/src/metric-data.json +++ /dev/null @@ -1,56 +0,0 @@ -[ - { - "name": "AVG_MEM_BYTES", - "instance": "joyentportal_compose-api_1", - "metrics": [ - { - "time": "2017-08-16T15:10:17.371Z", - "value": 60518400 - }, - { - "time": "2017-08-16T16:10:17.371Z", - "value": 60641280 - }, - { - "time": "2017-08-16T17:10:17.371Z", - "value": 60575744 - } - ] - }, - { - "name": "AVG_LOAD_PERCENT", - "instance": "joyentportal_compose-api_1", - "metrics": [ - { - "time": "2017-08-16T15:10:17.371Z", - "value": 23.2 - }, - { - "time": "2017-08-16T16:10:17.371Z", - "value": 23.6 - }, - { - "time": "2017-08-16T17:10:17.371Z", - "value": 23.7 - } - ] - }, - { - "name": "AGG_NETWORK_BYTES", - "instance": "joyentportal_compose-api_1", - "metrics": [ - { - "time": "2017-08-16T15:10:17.371Z", - "value": 64262042 - }, - { - "time": "2017-08-16T16:10:17.371Z", - "value": 65743772 - }, - { - "time": "2017-08-16T17:10:17.371Z", - "value": 67226695 - } - ] - } -] diff --git a/packages/cp-gql-mock-server/src/metric-datasets-0.json b/packages/cp-gql-mock-server/src/metric-datasets-0.json deleted file mode 100644 index 39922faf..00000000 --- a/packages/cp-gql-mock-server/src/metric-datasets-0.json +++ /dev/null @@ -1,34469 +0,0 @@ -[ - { - "name": "AVG_MEM_BYTES", - "metrics": [ - { - "time": "1970-01-18T05:54:08+00:00", - "value": "63868928" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "62160896" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "47214592" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "86921216" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64225280" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "89284608" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "88305664" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "92078080" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "98803712" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97939456" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95432704" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "104443904" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101097472" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "104443904" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97939456" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97939456" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101097472" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "104443904" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101097472" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97939456" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "104443904" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101097472" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60735488" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60256256" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85475328" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "84238336" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "54669312" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "91168768" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "78352384" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "91471872" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97505280" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97792000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "93044736" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97505280" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99577856" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97792000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99577856" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97792000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97505280" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "50462720" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60485632" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99577856" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61284352" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85368832" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76812288" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "92418048" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "84692992" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "89931776" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97787904" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95195136" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "92631040" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "102404096" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "98037760" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "104599552" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "102404096" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "98037760" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "104599552" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "50778112" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "98037760" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "54046720" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60907520" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "81117184" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64126976" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85803008" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "90058752" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "81502208" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "91803648" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95490048" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85000192" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "98676736" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85000192" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "102141952" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "98676736" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85000192" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "102141952" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85000192" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "102141952" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "98676736" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64348160" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64090112" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "55513088" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "88137728" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "82952192" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "87060480" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "93765632" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "90144768" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "94580736" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96215040" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100687872" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99594240" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99594240" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "102453248" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100687872" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100687872" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99594240" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "102453248" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "52002816" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61726720" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64008192" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83410944" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85651456" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "82800640" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "89907200" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "84742144" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "92405760" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96223232" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99266560" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "86663168" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "86663168" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "102150144" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99266560" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99266560" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "86663168" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "102150144" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60809216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "102150144" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61018112" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82186240" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85057536" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64012288" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88166400" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91869184" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "86265856" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "98684928" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94224384" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "86347776" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99762176" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "98684928" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "86347776" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "86347776" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "98684928" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99762176" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99762176" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60477440" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50262016" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "81301504" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60325888" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85962752" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "89792512" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84480000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92459008" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97341440" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91680768" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94904320" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97341440" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97787904" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101736448" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97787904" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101736448" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97341440" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "51843072" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97787904" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101736448" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83222528" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64086016" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61054976" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88707072" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "81797120" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "89972736" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96067584" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94425088" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85573632" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85295104" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "102252544" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100683776" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87375872" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "102252544" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100683776" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100683776" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "102252544" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87375872" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "48795648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64217088" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64008192" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87031808" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88666112" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "81833984" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94158848" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95211520" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "89919488" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96239616" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99823616" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100339712" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101916672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99823616" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100339712" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101916672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100339712" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99823616" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60973056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61665280" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101916672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85327872" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63234048" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85327872" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "86839296" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92024832" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91836416" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "98746368" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94171136" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97947648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97947648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "98746368" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99868672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97947648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99868672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "98746368" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50667520" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99868672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60719104" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "80375808" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84561920" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61157376" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91447296" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85622784" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85147648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97497088" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92155904" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85544960" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97497088" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87977984" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "98566144" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97497088" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87977984" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "98566144" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53379072" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "98566144" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87977984" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82460672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61038592" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63709184" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87961600" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "89317376" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84897792" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94937088" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96755712" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92352512" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100102144" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97583104" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101961728" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100102144" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101961728" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97583104" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97583104" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100102144" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101961728" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "54026240" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62803968" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63651840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87449600" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "86749184" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83099648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "93609984" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "89780224" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "93192192" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99565568" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99373056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95682560" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101933056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99565568" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99373056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101933056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99373056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99565568" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "101933056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63696896" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61071360" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84787200" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63582208" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87597056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87187456" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94392320" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91734016" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "93679616" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99790848" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97939456" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97939456" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99790848" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99336192" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99790848" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97939456" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99336192" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99336192" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60915712" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60960768" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84733952" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63180800" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84840448" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "86978560" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91852800" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91738112" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97792000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97308672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94089216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99704832" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97792000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99856384" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97792000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99856384" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99704832" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "47599616" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99704832" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "48087040" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82313216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "74510336" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60964864" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "89489408" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "89214976" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83951616" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91668480" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "96227328" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95727616" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "96796672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102055936" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101412864" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103534592" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102055936" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101412864" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101412864" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103534592" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102055936" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101412864" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103534592" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102055936" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62930944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "48168960" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62832640" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "85946368" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87547904" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81727488" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94363648" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93167616" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "89530368" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98582528" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100028416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95383552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101822464" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98582528" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100028416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100028416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98582528" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101822464" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101822464" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100028416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98582528" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60166144" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47833088" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101822464" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "85217280" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "68698112" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62873600" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86405120" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91152384" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91299840" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "92884992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97804288" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97849344" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103829504" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97804288" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98750464" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103829504" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97804288" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98750464" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98750464" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97804288" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103829504" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47558656" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "49430528" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98750464" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73629696" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "68235264" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60297216" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "88698880" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "84574208" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91205632" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91013120" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97402880" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94998528" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103215104" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100331520" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97427456" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103215104" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100331520" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97427456" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100331520" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97427456" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103215104" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100331520" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47280128" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97427456" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62451712" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47058944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "72372224" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87269376" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "84426752" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "68030464" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90906624" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "85078016" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93302784" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86605824" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99143680" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97701888" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99143680" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103428096" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86605824" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86605824" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99143680" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103428096" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99143680" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103428096" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86605824" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62517248" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47226880" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62435328" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74141696" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86528000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86450176" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "92823552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "88780800" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93601792" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95227904" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98983936" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99201024" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100892672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98983936" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99201024" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100892672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98983936" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99201024" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98983936" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99201024" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100892672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "100892672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "50053120" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60018688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54673408" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "68472832" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "84090880" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90599424" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90968064" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "68300800" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97468416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83910656" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97288192" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86147072" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102711296" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103559168" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103559168" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86147072" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102711296" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "103559168" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102711296" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86147072" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47538176" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47300608" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86147072" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "51142656" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65593344" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74895360" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "88403968" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "88985600" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67891200" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90595328" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95580160" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95666176" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101261312" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "96907264" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101797888" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101261312" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101797888" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102629376" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102629376" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101797888" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101261312" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102629376" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101797888" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47075328" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "82325504" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54931456" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47550464" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73478144" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "89214976" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65839104" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93360128" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "88121344" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95576064" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99020800" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95412224" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101040128" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101040128" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99020800" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102195200" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102195200" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99020800" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101040128" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "101040128" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99020800" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102195200" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47247360" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "102195200" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54300672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54136832" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76734464" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67809280" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90411008" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "93425664" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78241792" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92893184" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100077568" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97234944" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100077568" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99500032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97234944" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97234944" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100077568" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99500032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99500032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100077568" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97234944" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60039168" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "52310016" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99500032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68059136" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58707968" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "83529728" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90730496" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91832320" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78282752" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92532736" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97914880" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96563200" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99459072" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97914880" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103342080" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103342080" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97914880" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99459072" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103342080" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97914880" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99459072" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47329280" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99459072" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47349760" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49442816" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66134016" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66068480" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68026368" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "89001984" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "88719360" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95727616" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90853376" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95457280" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101486592" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101965824" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97759232" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101486592" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101965824" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103272448" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101965824" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101486592" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103272448" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101486592" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103272448" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101965824" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47239168" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "53751808" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "55480320" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79413248" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73940992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "70426624" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92979200" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "88563712" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "93224960" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98832384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95232000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99221504" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99221504" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98832384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100880384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98832384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100880384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99221504" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99221504" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98832384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100880384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48807936" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100880384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60563456" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "84606976" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62742528" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "81641472" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90157056" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91435008" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97398784" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "84951040" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86159360" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103985152" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86159360" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103985152" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86159360" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103985152" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47476736" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60309504" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86159360" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80875520" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "65732608" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60084224" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "84770816" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "89341952" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85520384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90914816" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95272960" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85495808" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97648640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "102133760" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87441408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87441408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97648640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "102133760" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97648640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87441408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "102133760" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47243264" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47095808" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97648640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63442944" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "65724416" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49516544" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "89026560" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76271616" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "81162240" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95260672" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87433216" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95358976" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97341440" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101744640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101888000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101744640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "104194048" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101888000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101744640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "104194048" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "61026304" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "101744640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85016576" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "104194048" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "50520064" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "104194048" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91918336" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76771328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98107392" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60555264" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "89497600" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98107392" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "84455424" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92254208" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95641600" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98107392" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60661760" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "102408192" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97996800" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "102408192" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "84086784" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97996800" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60526592" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97996800" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91414528" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97181696" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62726144" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "84901888" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91095040" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97181696" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86859776" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97181696" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97312768" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "93163520" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103137280" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "61214720" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99778560" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103137280" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86097920" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99778560" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92065792" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99778560" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "103137280" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99778560" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60760064" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98717696" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "54804480" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98717696" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85348352" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78282752" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47697920" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91049984" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "61009920" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92930048" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74625024" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99397632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84054016" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99397632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99397632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "86417408" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99397632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48803840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "86417408" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64086016" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "68165632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "86417408" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63488000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "86880256" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "90550272" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93343744" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87539712" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97247232" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97247232" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93675520" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98803712" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97247232" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99774464" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98803712" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99774464" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98803712" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97247232" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98803712" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99774464" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60903424" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "85401600" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62705664" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99774464" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63361024" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "86577152" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "91873280" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93315072" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98062336" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "86990848" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98709504" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98062336" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93859840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99377152" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98062336" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98709504" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98709504" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99377152" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98062336" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62849024" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99377152" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48078848" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87244800" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50520064" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75182080" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93102080" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "90054656" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83259392" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95399936" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "89853952" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100057088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100057088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96317440" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102166528" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100057088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102166528" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102023168" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47120384" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102023168" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58490880" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48857088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77967360" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64823296" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92585984" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81616896" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81985536" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98537472" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "90103808" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "86478848" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "86188032" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96227328" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98537472" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102014976" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "86188032" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98537472" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "86188032" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98537472" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102014976" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48295936" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62840832" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102014976" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81780736" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "51531776" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82489344" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83169280" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84471808" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "89939968" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87605248" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "89636864" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95473664" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "101957632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87605248" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96030720" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "54824960" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "101838848" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "101957632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "101838848" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82919424" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "101957632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "89878528" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "101957632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "101838848" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96325632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "61206528" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "101838848" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60379136" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84803584" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102400000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84758528" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92266496" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102400000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102400000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98115584" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92024832" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "61083648" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98115584" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97849344" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "98115584" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "85127168" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97849344" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92164096" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "53116928" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97849344" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97849344" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83574784" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97787904" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "90013696" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63963136" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97787904" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "86745088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97787904" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96583680" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102244352" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93917184" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97787904" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64024576" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102244352" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99741696" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87547904" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102244352" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99741696" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60411904" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93704192" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99741696" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84992000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99594240" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50745344" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "79749120" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99594240" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "91848704" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99594240" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "89743360" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "61321216" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95318016" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102416384" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84512768" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "91549696" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102416384" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63152128" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97816576" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "102416384" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87334912" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97816576" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64462848" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92729344" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87654400" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97816576" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99893248" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93732864" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "97816576" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64413696" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99893248" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99545088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99545088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87756800" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99893248" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99545088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94228480" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50954240" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83288064" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99868672" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49049600" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83431424" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "90099712" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99868672" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "89866240" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "99868672" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96395264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96624640" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "48730112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101711872" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80412672" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "102232064" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101711872" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101711872" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "89542656" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "102232064" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "102232064" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "95326208" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60837888" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101666816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84078592" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61304832" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "85495808" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101666816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "91803648" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97931264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "91492352" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101666816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97857536" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61349888" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97931264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97857536" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97931264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "85123072" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97931264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92069888" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97857536" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97718272" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "63090688" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97857536" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "87089152" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97718272" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "63283200" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "86896640" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97718272" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93655040" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92844032" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97718272" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99446784" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99446784" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99512320" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64024576" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99512320" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99446784" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "87040000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "94056448" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99512320" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60964864" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "85049344" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50536448" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "91119616" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "79597568" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "89059328" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97669120" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "95756288" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "103624704" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52592640" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83222528" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "103624704" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101715968" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101715968" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "90185728" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "103624704" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64405504" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96501760" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101715968" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101949440" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "87515136" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64659456" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "87695360" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101949440" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "94236672" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "94638080" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101949440" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99758080" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "63672320" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100380672" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99758080" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "87302144" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100380672" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99758080" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50413568" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100380672" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93904896" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "48017408" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78118912" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99639296" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "79036416" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99639296" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "89722880" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "95739904" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "89808896" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99639296" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50184192" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "95408128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101740544" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101740544" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101711872" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81989632" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "89509888" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101740544" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101711872" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61374464" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101711872" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96018432" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "86294528" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61890560" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101527552" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "85557248" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92094464" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101527552" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99016704" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92045312" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101527552" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "98119680" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99016704" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61841408" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99016704" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "86163456" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "98119680" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92069888" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "98119680" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99016704" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "63848448" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "98119680" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "98594816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "87654400" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64192512" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "98594816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88088576" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93831168" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "98594816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "94289920" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "98594816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99708928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100237312" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64708608" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99708928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100237312" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88371200" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99708928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100237312" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61440000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "94253056" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100651008" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "47439872" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "85569536" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92422144" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74080256" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100651008" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88932352" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100651008" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "98197504" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "104603648" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52535296" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "95596544" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "82677760" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101044224" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "104603648" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101044224" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "104603648" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "89726976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101044224" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "63582208" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96419840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "102080512" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "86425600" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64073728" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "86835200" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "102080512" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93286400" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "102080512" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "94711808" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99659776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61169664" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99659776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99934208" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84004864" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99934208" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99659776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92151808" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99934208" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49885184" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97959936" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83193856" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50302976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "79568896" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "89624576" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97959936" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96739328" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "90497024" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97959936" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102539264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95858688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50491392" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81862656" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102514688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102539264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102539264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102514688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89817088" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96227328" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102514688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "61202432" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "85319680" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101765120" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60665856" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101765120" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91033600" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "85090304" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97796096" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91770880" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101765120" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97796096" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98340864" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "61489152" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97796096" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98340864" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84865024" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91992064" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97796096" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98340864" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64655360" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98340864" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97677312" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62619648" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97677312" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88088576" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "94203904" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87371776" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97677312" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97677312" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93270016" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99590144" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99590144" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100081664" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64270336" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99590144" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87519232" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100081664" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50728960" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "94052352" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100081664" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51896320" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "82788352" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99594240" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99594240" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89923584" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83783680" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96747520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "90058752" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99594240" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102416384" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48173056" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96587776" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102109184" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102416384" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "80785408" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102416384" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89612288" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102109184" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102109184" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64466944" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95764480" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88526848" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102055936" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62984192" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88207360" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102055936" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95199232" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93712384" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100614144" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102055936" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60968960" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100614144" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100343808" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100343808" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84299776" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100614144" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92295168" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "53366784" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100343808" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50376704" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77414400" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98029568" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "79228928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "90316800" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98029568" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98029568" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95895552" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89935872" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102461440" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95416320" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98029568" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101711872" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "63881216" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102461440" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101711872" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102461440" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87638016" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60968960" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93876224" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101711872" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "61227008" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100401152" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84783104" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100401152" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84852736" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92155904" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100401152" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92368896" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97419264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50659328" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97419264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97742848" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97742848" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "80748544" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97419264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89546752" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97419264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97742848" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97742848" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64348160" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95019008" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64348160" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "86962176" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101801984" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101801984" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93863936" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87007232" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99500032" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93843456" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101801984" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99500032" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99819520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62468096" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99819520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87547904" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99500032" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99819520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "94408704" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "52715520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99954688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "82690048" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50610176" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83038208" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "90021888" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99954688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89673728" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96657408" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99954688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96092160" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50774016" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102285312" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102285312" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81367040" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101523456" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89870336" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101523456" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "102285312" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60907520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95203328" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101523456" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101539840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "85147648" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60928000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101539840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91246592" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "85528576" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101539840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98238464" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91512832" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98258944" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "61014016" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98238464" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98238464" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98258944" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "85340160" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98238464" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98258944" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91803648" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98533376" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98258944" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "66850816" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88354816" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98533376" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "63352832" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "94281728" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98533376" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87486464" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100839424" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "94031872" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "98533376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100839424" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "64245760" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100089856" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100839424" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87056384" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100089856" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93650944" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100089856" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61403136" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54132736" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84815872" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99491840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83247104" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99491840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92073984" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99491840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89690112" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52289536" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96542720" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102449152" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83324928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "90013696" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102449152" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96423936" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102449152" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "64466944" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "64827392" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87236608" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101937152" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93786112" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88207360" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101937152" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101937152" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99545088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95186944" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101543936" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99545088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61280256" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99545088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85086208" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101543936" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "51863552" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101543936" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92073984" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83091456" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53628928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98684928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83611648" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98684928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89698304" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "90267648" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98684928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96026624" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54562816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102223872" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96903168" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "82853888" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102223872" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102420480" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "90013696" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102420480" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102223872" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102420480" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96276480" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61919232" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102121472" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60735488" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85684224" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102121472" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84733952" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "91648000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98738176" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102121472" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "91123712" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61374464" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98738176" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98230272" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85954560" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98230272" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98738176" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98738176" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92151808" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98230272" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "64286720" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98230272" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98009088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87154688" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98009088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "64528384" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98009088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "86892544" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "94068736" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93495296" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99782656" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98009088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63754240" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99598336" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99782656" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99782656" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99598336" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88035328" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93925376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61599744" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99598336" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99782656" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54476800" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84807680" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92495872" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77099008" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99782656" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89948160" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97849344" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99782656" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47828992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95481856" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97849344" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97849344" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102420480" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74055680" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97849344" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102420480" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "90005504" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102420480" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95494144" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47808512" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42082304" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47808512" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102154240" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102154240" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47095808" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42082304" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "68530176" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102154240" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60637184" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84967424" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102154240" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "91254784" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61083648" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "90800128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97558528" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85123072" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97374208" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "103989248" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97374208" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92160000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "103989248" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "103989248" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97374208" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97681408" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "104460288" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97374208" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62996480" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "104460288" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63541248" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "86949888" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "104460288" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87891968" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92782592" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63102976" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "94011392" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99311616" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87564288" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99475456" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99311616" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92966912" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99311616" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99475456" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "48193536" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99852288" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99475456" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74989568" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99852288" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "50589696" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77471744" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89579520" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99852288" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54050816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89812992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95305728" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101765120" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "82890752" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95358976" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89657344" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102035456" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101765120" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101765120" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102035456" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96227328" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101785600" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63676416" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "102035456" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101785600" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88162304" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61165568" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101785600" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "94269440" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85336064" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98656256" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61517824" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "91828224" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98684928" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84541440" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98656256" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "91951104" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98684928" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98656256" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98684928" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97554432" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "50573312" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "79777792" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97554432" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54345728" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83222528" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97554432" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89612288" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89866240" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54210560" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "95080448" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96608256" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "82907136" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101732352" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "87957504" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102371328" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101732352" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101732352" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "94240768" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102371328" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61218816" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102371328" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100716544" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84848640" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100716544" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61341696" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100716544" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92217344" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "86237184" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92463104" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60461056" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97648640" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97648640" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99446784" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84103168" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97648640" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "91881472" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99446784" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97468416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99446784" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97648640" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99446784" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64151552" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97468416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97468416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "87924736" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "63918080" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "87859200" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "94359552" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97468416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99844096" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93655040" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64172032" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100237312" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99844096" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88035328" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100237312" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99844096" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93917184" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51331072" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99897344" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100237312" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54464512" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99897344" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83193856" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "90112000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "82923520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99897344" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54759424" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "90349568" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96428032" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96747520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102506496" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "81055744" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102506496" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102092800" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "85340160" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "85409792" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102506496" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102092800" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "86589440" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64208896" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102092800" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61210624" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "86589440" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "87711744" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93978624" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "86044672" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "86589440" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99835904" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "62906368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "91566080" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98746368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "86740992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99835904" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99835904" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92667904" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98746368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98746368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "50524160" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99221504" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99221504" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75452416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "52748288" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "82989056" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89362432" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99221504" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89907200" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96047104" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "53997568" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "82702336" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96489472" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101326848" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101326848" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89239552" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102526976" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "95985664" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102526976" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101326848" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60817408" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101806080" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102526976" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101806080" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84312064" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61140992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92352512" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84979712" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101806080" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92196864" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98025472" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60461056" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97652736" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98025472" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84656128" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98025472" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92327936" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97652736" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97652736" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97689600" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "98025472" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97689600" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97652736" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64385024" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "87416832" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97689600" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64868352" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "94408704" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97689600" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88178688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99528704" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "63483904" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "94117888" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99528704" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "87080960" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100835328" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93241344" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "99528704" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100835328" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "52690944" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100835328" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100007936" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "52858880" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83083264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100007936" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83451904" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100007936" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "90050560" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "50286592" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89870336" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96161792" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78807040" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102170624" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96813056" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89706496" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102170624" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102379520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102170624" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102379520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "95420416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61284352" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102379520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102293504" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61202432" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83922944" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102293504" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "102293504" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "91627520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "85020672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92139520" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97247232" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61259776" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97247232" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97927168" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "85520384" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92360704" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97927168" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97247232" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97882112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97247232" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97927168" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "63901696" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97927168" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97882112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97882112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "86454272" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "63635456" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93683712" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97882112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "87875584" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93593600" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99217408" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64503808" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99217408" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "87166976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99651584" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99651584" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99217408" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93982720" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53862400" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99676160" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99651584" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83091456" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51838976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99676160" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89907200" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99676160" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "82997248" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50089984" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96276480" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89796608" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96268288" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83259392" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96276480" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101613568" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96276480" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "90091520" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96309248" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101613568" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96276480" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102109184" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101613568" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61177856" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61542400" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "85434368" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102109184" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "91856896" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "85598208" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102109184" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98258944" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61194240" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92258304" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98512896" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84275200" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98258944" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98512896" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98258944" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "91385856" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50900992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98512896" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98033664" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "80048128" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98033664" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53190656" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83234816" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98033664" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89968640" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "90206208" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95256576" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50470912" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83484672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96493568" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102096896" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102551552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89817088" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102096896" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102551552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96112640" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102096896" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102461440" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61476864" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102551552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84992000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60833792" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102461440" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84852736" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92307456" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "102461440" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50786304" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92217344" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "82477056" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97816576" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97816576" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89653248" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96079872" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97816576" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97685504" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101953536" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97816576" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64196608" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101953536" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64151552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88584192" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "94162944" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101953536" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "87216128" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100864000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93532160" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "63971328" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100864000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "87683072" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99426304" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99426304" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93745152" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100864000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50327552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99672064" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99426304" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99672064" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50511872" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83013632" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "79974400" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99672064" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89747456" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "90062848" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96288768" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50806784" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101933056" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95350784" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83193856" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101945344" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101933056" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89833472" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96460800" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101933056" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101945344" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101945344" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61509632" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101810176" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60755968" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101810176" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "85655552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92409856" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "101810176" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84541440" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "91709440" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61190144" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98021376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84992000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98238464" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98021376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92282880" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98238464" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98021376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98021376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98238464" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97595392" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97595392" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98238464" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64540672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88064000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97595392" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "63131648" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "87076864" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97595392" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "94142464" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "63918080" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "94023680" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99467264" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99737600" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "86839296" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99467264" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99467264" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99737600" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93224960" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61513728" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99737600" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99553280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84983808" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99553280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61124608" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "99553280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92622848" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "85790720" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50843648" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "98029568" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92639232" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98234368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98029568" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "81727488" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98234368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98029568" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "90005504" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98029568" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96251904" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98234368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "66899968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102285312" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98234368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102285312" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88403968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64356352" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "94195712" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102285312" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87232512" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "63954944" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93962240" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101105664" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99790848" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87613440" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101105664" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99790848" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101105664" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "94433280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100012032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "48599040" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99790848" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "81715200" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50552832" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100012032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100012032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89812992" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "81600512" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "90255360" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51576832" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95711232" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95117312" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101842944" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "82710528" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89419776" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101756928" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101842944" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101756928" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101842944" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96231424" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101756928" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102002688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62357504" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102002688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "85762048" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60735488" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "85331968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102002688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "91893760" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98902016" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61235200" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "91856896" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98291712" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84791296" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98902016" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98902016" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98291712" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92270592" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98291712" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98902016" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97337344" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64335872" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97337344" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98291712" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64266240" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87146496" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97337344" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97337344" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87527424" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "94322688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "63045632" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99479552" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "94101504" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99479552" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87617536" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99889152" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99889152" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99479552" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93188096" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "52727808" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99889152" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99606528" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99606528" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "48648192" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "82911232" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77291520" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "90132480" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99606528" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96854016" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50667520" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89796608" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77975552" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102293504" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95342592" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101150720" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89640960" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102293504" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101150720" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95780864" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102293504" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101150720" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61480960" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102060032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102060032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61317120" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84983808" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92258304" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "85209088" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102060032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "91389952" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60174336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97804288" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97619968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84267008" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97804288" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "90746880" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97619968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97804288" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97038336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97619968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97804288" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97619968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "63950848" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97038336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64233472" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97038336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87588864" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97038336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "86695936" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "94453760" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64172032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100118528" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "94076928" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100118528" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99860480" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "82776064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99860480" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100118528" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "85270528" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99860480" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "86310912" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61292544" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61005824" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84385792" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "86310912" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "86310912" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "85184512" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92229632" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50880512" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97710080" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "91959296" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "80171008" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97710080" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97411072" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "90083328" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "104112128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97710080" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "104112128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95428608" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97710080" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "66318336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "104112128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102227968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88375296" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102227968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61251584" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84570112" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "94576640" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102227968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92295168" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101003264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60731392" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101003264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84815872" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98426880" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98426880" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "91217920" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "101003264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98426880" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98115584" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "53743616" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "53067776" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "82845696" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98115584" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "83070976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "90750976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "98115584" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50733056" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89997312" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95870976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "83136512" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "102711296" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96591872" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102711296" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89792512" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102313984" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102313984" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102711296" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96452608" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102088704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102313984" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "61542400" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84963328" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102088704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "61591552" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102088704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "85417984" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92508160" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92696576" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60977152" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97832960" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "98332672" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "85401600" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97832960" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97832960" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "98332672" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92000256" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "98332672" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97505280" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97832960" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "98332672" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97505280" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64524288" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97505280" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87875584" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63733760" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87756800" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "94044160" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97505280" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99676160" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93581312" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54317056" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99676160" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100483072" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75247616" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92721152" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99676160" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100483072" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "47382528" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100483072" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "98516992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "98516992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48431104" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74174464" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74940416" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "98516992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88526848" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89726976" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95006720" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "98516992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63074304" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95346688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100933632" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102023168" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100933632" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "86728704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100933632" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92897280" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102023168" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48541696" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102023168" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99598336" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99598336" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50106368" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76673024" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89518080" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80752640" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99598336" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95563776" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48996352" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89772032" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83755008" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101920768" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95576064" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101699584" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101920768" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89059328" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101920768" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101699584" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96059392" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101941248" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101699584" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "61210624" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101941248" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60739584" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84353024" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101941248" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91951104" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "85016576" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "61607936" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92368896" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97878016" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "98304000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "85037056" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97878016" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92065792" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97878016" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "98304000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97878016" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "98304000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97546240" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63827968" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48869376" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97546240" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87601152" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97546240" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80773120" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97546240" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93822976" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89538560" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99524608" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95350784" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63905792" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99524608" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102105088" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "86650880" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "94109696" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102105088" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99524608" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99917824" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60317696" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102105088" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99917824" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48955392" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84758528" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92254208" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99917824" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "82747392" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89726976" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97619968" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48615424" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96169984" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97619968" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78479360" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97619968" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89604096" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101928960" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101928960" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97619968" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95371264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "57606144" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101928960" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101859328" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74756096" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60928000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101859328" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97378304" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "85495808" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "101859328" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92266496" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60207104" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "103997440" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "103997440" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97992704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84705280" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "90685440" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97992704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "103997440" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97992704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97304576" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "103997440" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62742528" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97304576" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97992704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87023616" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97304576" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64622592" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92954624" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87384064" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97304576" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64278528" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99643392" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "94117888" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99905536" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87265280" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99643392" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99643392" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99905536" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "94408704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "52510720" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99487744" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99905536" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99487744" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83079168" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48934912" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89526272" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99487744" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "79925248" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96620544" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "90001408" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48885760" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95477760" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77029376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101953536" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102301696" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89526272" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101953536" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102301696" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95014912" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101953536" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102301696" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60866560" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101883904" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101883904" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60473344" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84791296" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84668416" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "91774976" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101883904" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97374208" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92192768" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "61349888" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "85065728" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99028992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97374208" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99028992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97374208" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92327936" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99028992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "49934336" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97812480" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76918784" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "50028544" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97812480" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76300288" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97812480" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89055232" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97812480" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "94523392" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89653248" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95629312" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64290816" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100941824" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101801984" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100941824" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87318528" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100941824" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101801984" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "94371840" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100139008" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "51671040" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101801984" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100139008" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53039104" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75714560" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89513984" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83087360" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100139008" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89571328" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95596544" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "50507776" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102248448" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74948608" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95813632" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102248448" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101609472" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89894912" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95813632" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102248448" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101609472" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101609472" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102367232" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64282624" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64618496" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102367232" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87638016" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102367232" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87400448" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "94470144" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99680256" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62853120" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "94326784" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87236608" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99680256" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99917824" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99680256" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99917824" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92946432" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99885056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99917824" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "54431744" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "52731904" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82661376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99885056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99885056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89595904" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83120128" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89542656" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95969280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99885056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62976000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101580800" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95940608" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87064576" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101580800" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101867520" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93167616" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101580800" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101867520" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101867520" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99344384" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60964864" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99344384" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "54091776" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "85278720" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "91901952" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99344384" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83156992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97267712" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53846016" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89907200" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97267712" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82534400" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96546816" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96546816" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89804800" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97267712" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97267712" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96546816" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95936512" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60248064" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96546816" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102453248" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84226048" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64311296" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102453248" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102453248" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "91598848" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87543808" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60690432" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "94658560" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "98164736" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84385792" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99897344" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "98164736" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "98164736" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99897344" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "91611136" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97964032" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "50487296" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99897344" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77529088" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99897344" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97964032" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89628672" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97964032" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62980096" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87805952" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95109120" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48287744" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93016064" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102023168" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75526144" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89956352" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102023168" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99651584" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "102023168" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99651584" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95543296" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101851136" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99651584" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "61243392" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60805120" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101851136" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84787200" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92463104" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101851136" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "85245952" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "98164736" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47865856" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92352512" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "98164736" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97599488" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74739712" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "98164736" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89800704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "104849408" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "104849408" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "94887936" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "98164736" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64135168" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "104849408" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101720064" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60538880" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101720064" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87240704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84647936" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "94650368" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101720064" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60096512" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "91557888" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99618816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84148224" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98058240" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99618816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99618816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98058240" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91664384" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97382400" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99618816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98058240" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97382400" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63696896" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48656384" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97382400" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87126016" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83697664" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "89300992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97382400" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "94097408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95686656" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99565568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63139840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101748736" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99565568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87162880" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93073408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99565568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101748736" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101748736" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99565568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60936192" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99565568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84860928" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "61050880" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99565568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "85577728" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92131328" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97480704" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50073600" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91832320" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97480704" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "82903040" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98422784" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98422784" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "89243648" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97480704" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96550912" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97480704" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98422784" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98422784" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102125568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63270912" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87269376" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102125568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62578688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "94396416" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102125568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83111936" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100270080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60739584" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "85164032" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87904256" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100270080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84680704" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100270080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87904256" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91230208" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50319360" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87904256" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98222080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98222080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81027072" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87904256" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64540672" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98222080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "90255360" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98222080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87244800" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95764480" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "94638080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62623744" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102100992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "86519808" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100265984" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102100992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93130752" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100265984" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102100992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50667520" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100020224" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100265984" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100020224" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78909440" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "51458048" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "89513984" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74911744" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100020224" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48349184" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95121408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "90103808" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95526912" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "80523264" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102035456" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "89186304" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102236160" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102035456" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102035456" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102236160" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95059968" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60657664" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102236160" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101179392" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101179392" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "61112320" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84467712" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "85405696" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101179392" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91914240" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91795456" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60125184" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97959936" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97959936" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98779136" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84398080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98779136" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97959936" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "90963968" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97239040" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98779136" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97959936" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98779136" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97239040" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64376832" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97239040" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64204800" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88469504" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "86876160" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "94228480" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97239040" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63258624" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100519936" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93982720" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "86417408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99606528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100519936" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93192192" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99606528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100519936" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99606528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "61046784" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99033088" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "85245952" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99033088" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50171904" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91570176" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99033088" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "80105472" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98045952" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47579136" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "89088000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77303808" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95748096" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "103825408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102428672" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "103825408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "89694208" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95268864" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102428672" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "103825408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101781504" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102428672" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60928000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60473344" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101781504" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84697088" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91922432" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "85151744" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101781504" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92512256" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60760064" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98070528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98070528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "85012480" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98070528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91774976" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97517568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98070528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97517568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69464064" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97587200" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64135168" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97517568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92688384" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "97517568" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87523328" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99151872" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "94453760" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "105725952" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62820352" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "105725952" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99966976" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "87334912" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92930048" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99966976" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "105725952" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99966976" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "50917376" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99622912" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99622912" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "82903040" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "53559296" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "89853952" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99622912" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83333120" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96497664" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "90046464" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49086464" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96661504" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78114816" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102252544" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "90607616" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102252544" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102436864" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102252544" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102436864" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95559680" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102436864" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62500864" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102072320" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102072320" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61067264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "85696512" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "91541504" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102072320" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "85602304" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61423616" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "91901952" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98439168" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "85880832" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97980416" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98439168" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97980416" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92901376" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98439168" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97980416" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98439168" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98197504" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98197504" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97980416" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "64577536" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "66084864" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "87314432" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98197504" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88604672" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93949952" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98197504" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "63258624" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "94408704" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99561472" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100950016" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99561472" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "87048192" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99561472" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92999680" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100950016" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100950016" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "48599040" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99348480" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99348480" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "53534720" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83447808" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "89907200" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76951552" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99348480" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "90546176" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96563200" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "50446336" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102256640" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83062784" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95756288" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "89538560" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102256640" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102174720" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102174720" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102256640" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96153600" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61341696" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102174720" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101974016" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "85450752" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61050880" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101974016" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84918272" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "91754496" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101974016" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98234368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "91529216" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60297216" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "85102592" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98234368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97419264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97419264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "91680768" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98234368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98234368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97419264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98127872" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "63922176" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97419264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98127872" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "86859776" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65175552" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98127872" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98127872" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "94117888" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88023040" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93794304" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "63451136" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99360768" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100372480" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99360768" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "87322624" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100372480" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99360768" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93220864" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99475456" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100372480" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "54067200" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99475456" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "48300032" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83046400" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78213120" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "99475456" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "89759744" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96153600" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "50507776" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "85426176" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "85327872" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102264832" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75501568" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102264832" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "86736896" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "89812992" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95416320" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102264832" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "86736896" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "86736896" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61435904" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101756928" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "85966848" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101756928" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61026304" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84811776" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92323840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101756928" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61247488" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "91607040" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98988032" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61247488" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "91607040" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98988032" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "47026176" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46981120" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "98988032" - } - ] - }, - { - "name": "AVG_LOAD_PERCENT", - "metrics": [ - { - "time": "1970-01-18T05:54:08+00:00", - "value": "38203392" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "38203392" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "39776256" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "36106240" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "30339072" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "29814784" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "39776256" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "63893504" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "57077760" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63893504" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56553472" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39251968" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "24047616" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "64417792" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "59699200" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "24571904" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "36106240" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "27193344" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43970560" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "27193344" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43970560" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "63893504" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38203392" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "22999040" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "56553472" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "59699200" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43446272" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38203392" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "64417792" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "27717632" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "35581952" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30339072" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43970560" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "59699200" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "27193344" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41873408" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "63893504" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "64417792" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42921984" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30339072" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41349120" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "22474752" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30339072" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30339072" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42921984" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "35057664" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "27717632" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43970560" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "59699200" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "53932032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "27717632" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "41873408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "41349120" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43970560" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "64417792" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "64417792" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29814784" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "64417792" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "27193344" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "36106240" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43970560" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "36106240" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56553472" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "41873408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "36106240" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49737728" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "41349120" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "25620480" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "64417792" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "51834880" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56553472" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "39776256" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "59699200" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "27717632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "43970560" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38203392" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38203392" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "24571904" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "53407744" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "40300544" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "57077760" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "24571904" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "32960512" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "39251968" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56553472" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80146432" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80146432" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80146432" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "56553472" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "63893504" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39251968" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63893504" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "37679104" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "24047616" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "24047616" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "18804736" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "24047616" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "22999040" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "18804736" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "43446272" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39251968" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "24571904" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39251968" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63893504" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "63893504" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "37679104" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39251968" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "57077760" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "37679104" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64417792" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39251968" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37679104" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "35057664" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "56553472" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64417792" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38203392" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "25096192" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "59699200" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72806400" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "79622144" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78573568" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "39251968" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "30339072" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "24571904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63893504" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "24571904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "25096192" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "24571904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "28241920" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36106240" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "66514944" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "56553472" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "25096192" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70709248" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "56553472" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77000704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "59699200" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "39251968" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "24571904" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "24047616" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "80146432" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "80146432" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "80146432" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "24571904" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38203392" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "24571904" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63893504" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70184960" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "61796352" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "24047616" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "79097856" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "39251968" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75952128" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "34009088" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "59174912" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "57602048" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37679104" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "56553472" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "63893504" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65990656" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72282112" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77524992" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "67563520" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "67039232" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73330688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "56029184" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73854976" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69660672" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "63369216" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69136384" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38727680" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62844928" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "75427840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68612096" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76476416" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "33484800" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58650624" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "56553472" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74903552" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "64942080" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71757824" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "34533376" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60747776" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58126336" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65466368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71233536" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62320640" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61272064" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37154816" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60223488" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78049280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "36630528" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68087808" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74379264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "23523328" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74379264" - } - ] - }, - { - "name": "AGG_NETWORK_BYTES", - "metrics": [ - { - "time": "1970-01-18T05:54:08+00:00", - "value": "22760432" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "22256944" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "15915432" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "38699896" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "28655632" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "39563104" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37544664" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37207088" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "38343480" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "50325664" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "36528040" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "51188376" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "48993328" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "51188376" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "50325664" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "50325664" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "48993328" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "51188376" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "48993328" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "50325664" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "51188376" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "48993328" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "24085760" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "22316152" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "27072680" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "34253464" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "23732152" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "41031536" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "29643648" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "34101944" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "47816824" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "39365568" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "44551400" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "47816824" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "43955136" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "39365568" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "43955136" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "39365568" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "47816824" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "16827392" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "19585832" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "43955136" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "22513232" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37320368" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "33239408" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "36642144" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "39591152" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "33633296" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "49760248" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "47388704" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "39316504" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "45736320" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "52159048" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "47178192" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "45736320" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "52159048" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "47178192" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "17223480" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "52159048" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "20864144" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "19465936" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37558184" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "23050752" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "29975016" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37807728" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "24835464" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "43572544" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "50581144" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "26327360" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "41587152" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "26327360" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "49414176" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "41587152" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "26327360" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "49414176" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "26327360" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "49414176" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "41587152" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "28929680" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "25512464" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "20060968" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "30632024" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "31334968" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "41670088" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "40096080" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "31815360" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "43417864" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "44555264" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "41247608" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "53156288" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "53156288" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "57646632" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "41247608" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "41247608" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "53156288" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "57646632" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "20020208" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "19560896" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "21893568" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "25274712" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "29670072" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37689120" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "40181600" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "26161384" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "44657536" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "38929688" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "42334400" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "25819264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "25819264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52086648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "42334400" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "42334400" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "25819264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52086648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "23795488" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52086648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "25098664" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "26497384" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "26740296" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "27010216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29031384" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "40946784" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30361656" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39621504" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "42495936" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29068808" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55312416" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39621504" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29068808" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29068808" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39621504" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55312416" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55312416" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "23895320" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "16578304" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37129368" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "24249696" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "34757640" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37759240" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "34824568" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "34043888" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46367056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "34163736" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "51349512" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46367056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "47472832" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49945880" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "47472832" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49945880" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46367056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "21049880" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "47472832" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49945880" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "26731448" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "28156560" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "25130624" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29119224" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "27035888" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41579792" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39984272" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "43322304" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "22778056" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36101712" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53302752" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41128752" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "19953152" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53302752" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41128752" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41128752" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53302752" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "19953152" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "18492936" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "25288208" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "27300240" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41252680" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29212912" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "38150944" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "40769264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "42989008" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39661424" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37866744" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "54157232" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55921560" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50966328" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "54157232" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55921560" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50966328" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55921560" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "54157232" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "25823656" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "20063128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50966328" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "28156720" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "27946360" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "38441928" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37999536" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "42486336" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36859592" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41165248" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36886400" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50276632" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50276632" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41165248" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49844432" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50276632" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49844432" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41165248" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "19926952" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49844432" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "18292336" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "32488168" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36274072" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "24828760" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "35701968" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "27208848" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "19088320" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "48477752" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41357264" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "31575632" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "48477752" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30556192" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "40874976" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "48477752" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30556192" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "40874976" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "16608232" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "40874976" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30556192" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29118744" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "23315000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "26729776" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36389200" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "44368744" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41006840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "35903544" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "42882536" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39852520" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49709712" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52758576" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55309504" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49709712" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55309504" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52758576" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52758576" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49709712" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55309504" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "17909376" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "23437568" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "25486392" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "33430216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41689800" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30058080" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39897920" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45183720" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "47038832" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53273296" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45325648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "43299120" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56788128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53273296" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45325648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56788128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45325648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53273296" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56788128" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "25950904" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "20181896" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "38043336" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "23612336" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "42994824" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39927760" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41238344" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37652296" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39425776" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53811792" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50362248" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50362248" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53811792" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52330928" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53811792" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50362248" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52330928" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52330928" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "23871536" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "20046840" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37436344" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "24157384" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "40044488" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "40996096" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36729216" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39605096" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52367608" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49123824" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "39613952" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "51786648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52367608" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "19002720" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52367608" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "19002720" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "51786648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "15945864" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "51786648" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "18426552" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "24143000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "27511488" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "18192208" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "37858120" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43381488" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "36516264" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "36633496" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "36495544" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41611112" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "50564600" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "49647264" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "55013672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "48728048" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "49647264" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "55013672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "55013672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "48728048" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "49647264" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "55013672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "48728048" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "49647264" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "25411504" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "18205448" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "25104952" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41548968" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "35895432" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "37579032" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "34505192" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "39898736" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "37138912" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53909904" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47544664" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "50153488" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "48233320" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53909904" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47544664" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47544664" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53909904" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "48233320" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "48233320" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47544664" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53909904" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "24809248" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "19405712" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "48233320" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "28639048" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "27697488" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "22814800" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "39062096" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42472808" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42254632" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38500280" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41182968" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41491400" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54361480" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41182968" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52157088" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54361480" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41182968" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52157088" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52157088" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41182968" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54361480" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "15957984" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "17099512" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52157088" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38070280" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29089088" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "19739760" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38642552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30656256" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "44950576" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "45269080" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43361720" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38415856" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54922080" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52081848" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43830928" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54922080" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52081848" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43830928" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52081848" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43830928" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54922080" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52081848" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "15906272" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43830928" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "25767672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "17054272" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "20170104" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "28081520" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "34330416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "31060056" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "39269384" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "36726688" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41459416" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "24951488" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54512208" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38167256" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54512208" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "51217024" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "24951488" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "24951488" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54512208" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "51217024" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54512208" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "51217024" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "24951488" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "19954344" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "15908032" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "24830000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "26743832" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29529616" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42004880" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42526504" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42727112" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "40936408" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41084360" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54334712" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "40905584" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54756752" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54334712" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "40905584" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54756752" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54334712" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "40905584" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54334712" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "40905584" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54756752" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54756752" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "17665392" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "18675552" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "20158504" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29726208" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30026800" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42808112" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "45453928" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "27265184" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43666952" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "27683952" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41867232" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "28293152" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "55014976" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "56276320" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "56276320" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "28293152" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "55014976" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "56276320" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "55014976" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "28293152" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "15975944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "15944672" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "28293152" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "19417872" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "28329104" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "26295760" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "44061456" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41350720" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "27299560" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43502648" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "40446888" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43933304" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54378944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42260528" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42265128" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54378944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42265128" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "55447080" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "55447080" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42265128" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "54378944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "55447080" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42265128" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "15932680" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "24038432" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "19972616" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "15914072" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "37320608" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "38932784" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29651544" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "37517360" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "44294240" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "37058512" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "51091944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "44409800" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "50621904" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "50621904" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "51091944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42332744" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42332744" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "51091944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "50621904" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "50621904" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "51091944" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42332744" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "16524952" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42332744" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "19910576" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "22077240" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41066960" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "28556976" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "36767112" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42032008" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42199472" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42664152" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "40359104" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "50821440" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "40359104" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42069240" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "50821440" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "50821440" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "40359104" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42069240" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42069240" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "40359104" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "50821440" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "18988504" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "17660824" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42069240" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "32454848" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "25659488" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37927552" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37450040" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "33389952" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "33510832" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48295248" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46525712" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "50982304" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48273032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46525712" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49426448" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49426448" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46525712" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48273032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49426448" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46525712" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48273032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "15926672" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48273032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "15908112" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "18145696" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "28529224" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "28772032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29353152" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30758192" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43609112" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43390192" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44523912" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44983112" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56280408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43585880" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43946248" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56280408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43585880" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56792216" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43585880" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56280408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56792216" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56280408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56792216" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43585880" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "15955040" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "21418808" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "20904752" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30522640" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "25037736" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "35178872" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44972144" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "40861672" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "35576528" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49087192" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "39009968" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44208328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44208328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49087192" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "52000040" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49087192" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "52000040" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44208328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44208328" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49087192" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "52000040" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "20130288" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "52000040" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "23978184" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "27958560" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "35310064" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "23594168" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "36558552" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43855312" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "34336576" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42121832" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "23431384" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46400256" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37417512" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "55104832" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46400256" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46400256" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37417512" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "55104832" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37417512" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46400256" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "55104832" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "15912880" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "18805048" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37417512" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "33265112" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30050400" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "23025856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "33791336" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "31057712" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "20823512" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46480312" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44954632" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "33993016" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44893016" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43273704" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "18898656" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "18898656" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44893016" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43273704" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44893016" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "18898656" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43273704" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "15908000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "15915000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44893016" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29760504" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29559968" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "18462048" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30934992" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "35987624" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "31493048" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49700648" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "33381128" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45212048" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48258248" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48508688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43179856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48508688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46368216" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43179856" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48508688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46368216" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "24112144" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48508688" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "26536448" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46368216" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "17411160" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46368216" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "40241496" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "32698480" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "39016768" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "25024232" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "33376176" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "39016768" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "36238848" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "35952192" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46754152" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "39016768" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "20603168" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45086840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48811032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45086840" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37426584" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48811032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "22323984" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48811032" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "36507888" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49953408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "21939552" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "32931616" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46785256" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49953408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "31263248" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "49953408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45621480" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44407552" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "57700224" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "19315616" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42137120" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "57700224" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29481408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42137120" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43482784" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42137120" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "57700224" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42137120" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "21570792" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "41186680" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "20936952" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "41186680" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "32231488" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30699960" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "15901408" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46287224" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "21351136" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44462040" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44911296" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "44462040" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "22738400" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43747192" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37454024" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "44462040" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "43747192" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "43747192" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "44462040" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "21554104" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "43747192" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "19734888" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "21554104" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "23597000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "27880768" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "21554104" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "27480424" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "39931024" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "43451272" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "36742264" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37142760" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41994568" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41994568" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "35991592" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "51281864" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41994568" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49754664" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "51281864" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49754664" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "51281864" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41994568" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "51281864" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49754664" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "21162408" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38195672" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "21533584" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49754664" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "27757216" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37693968" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37232144" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37115752" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50364312" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37247936" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50792000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50364312" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "36292608" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49069784" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50364312" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50792000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50792000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49069784" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50364312" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "27273120" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49069784" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "18659568" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "27896328" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "18269720" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "31073288" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "42515048" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "31082168" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "25506240" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "44904904" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "40044208" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41729816" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41729816" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38375872" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "43761264" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41729816" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "43761264" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50914232" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "15907744" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50914232" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "22806632" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "17513568" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "30644240" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "21175016" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "34998952" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38047432" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "30574912" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48970528" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38841648" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "17932104" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29710752" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37048560" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48970528" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49964584" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29710752" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48970528" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29710752" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48970528" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49964584" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "18231192" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "24782760" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49964584" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37470176" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "21066176" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "26833616" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "27079032" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "30115080" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "36514016" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "16566784" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41547064" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50272488" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48201688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "16566784" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "39766200" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "16158920" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "52761072" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48201688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "52761072" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29275056" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48201688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "43524712" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48201688" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "52761072" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41288136" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "19703408" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "52761072" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "25148952" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37693232" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "54080896" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "35898008" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "36647968" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "54080896" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "54080896" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50297712" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "35130784" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "21118040" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50297712" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47707520" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50297712" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38465616" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47707520" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38021056" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "21837296" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47707520" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47707520" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "26425048" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50843896" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41177832" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "22905272" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50843896" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "39412440" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50843896" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "39542760" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "52403608" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37572096" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50843896" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "25653488" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "52403608" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50178648" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41191224" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "52403608" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50178648" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "24703592" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "40085848" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50178648" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "34773984" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "53052832" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "16576144" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "36468920" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "53052832" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "34190576" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47184784" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "53052832" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37265928" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "22391352" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "49314552" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47184784" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47898928" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "39192416" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47184784" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38941904" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47898928" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47184784" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "25441936" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "51985008" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47898928" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "35258832" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "51985008" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "20927248" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48195384" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37379256" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "51985008" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46657440" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "35414088" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "51985008" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "25486904" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46657440" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48659240" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48659240" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "42324800" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46657440" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "48659240" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41735448" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "20156352" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "25965896" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "53664656" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "17809992" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "24542504" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41359848" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "53664656" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "39633192" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "53664656" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "39542832" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "36892240" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "15970096" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52887656" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "36552120" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50365480" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52887656" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52887656" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "36747096" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50365480" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50365480" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50177576" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "19616624" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "47853096" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "36866368" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "19777360" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "30696896" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "47853096" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "35844552" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49136928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "45732296" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "47853096" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43822296" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "19658000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49136928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43822296" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49136928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37270768" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49136928" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "36137024" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43822296" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49046776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "27213496" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43822296" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "36015912" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49046776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "21651568" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "30008464" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49046776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "35145472" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "42664728" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49046776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "48542728" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "48542728" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43094048" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "22420312" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43094048" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "48542728" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38784680" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38005544" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43094048" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "20628376" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "31006824" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49768248" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "15563728" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "45198632" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49768248" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "36037664" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49768248" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "36378432" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43059920" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "49628744" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56402320" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "21807232" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "27202240" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56402320" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "47631504" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "47631504" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41659656" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56402320" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "22207816" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "39810368" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "47631504" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52297576" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38944896" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "24282784" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41388592" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52297576" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37824984" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38913336" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52297576" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51600632" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "26288296" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51744072" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51600632" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41538392" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51744072" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51600632" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "18392232" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51744072" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "39913384" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "15114560" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "34866120" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52157344" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "35576032" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52157344" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "34524480" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "48019696" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "35971408" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52157344" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "19570944" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "48694104" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46426824" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46426824" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "47055112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "24668072" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "39224600" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46426824" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "47055112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "25930856" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "47055112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37669944" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "28467776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "19987864" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50035984" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "30734696" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "42276944" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50035984" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "40535112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "45127936" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50035984" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43360360" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "40535112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "19107808" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "40535112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29606488" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43360360" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43699184" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43360360" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "40535112" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "25155064" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43360360" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41544832" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "33318792" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "23758088" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41544832" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "39736152" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "48063616" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41544832" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38592528" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41544832" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46715776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51347432" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "28243904" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46715776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51347432" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "30193008" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46715776" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51347432" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "23753784" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43238024" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41583888" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "15917144" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "26585936" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "40286312" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29774680" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41583888" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "44640608" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41583888" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52835504" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50983416" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "21892696" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "43057656" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "27272160" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "55964992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50983416" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "55964992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50983416" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41712736" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "55964992" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "24177144" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "40662328" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "53213064" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "40251584" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "24108424" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "41121016" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "53213064" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38615392" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "53213064" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "39312056" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51659208" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "20553320" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51659208" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52428408" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38104256" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52428408" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "51659208" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37205848" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "52428408" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "18960392" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50387128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "25337536" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "16403184" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "35413680" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "40023128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50387128" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38753208" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "36140560" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "50387128" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51415272" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49869560" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "19078912" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38136944" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47870432" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51415272" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51415272" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47870432" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38010864" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "36822880" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47870432" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "20569760" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "30693840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49535112" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "24988960" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49535112" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "44807840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "35484368" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "43863200" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34626560" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49535112" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "43863200" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47454048" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "22450200" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "43863200" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47454048" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39844432" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38510496" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "43863200" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47454048" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "27400176" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47454048" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51458424" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "27757088" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51458424" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "29282616" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "42775656" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "29866440" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51458424" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51458424" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "43289552" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "55585072" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "55585072" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "42653104" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "22945672" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "55585072" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39746640" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "42653104" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "19044536" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38752176" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "42653104" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "20776272" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "24015624" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51009608" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51009608" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38683968" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "25995864" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37449840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "41308768" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51009608" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50498696" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "16662696" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39597144" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "52636448" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50498696" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37239152" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50498696" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37339232" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "52636448" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "52636448" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "23876512" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50923768" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39811576" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48291328" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "26516696" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "36035088" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48291328" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38899784" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48763144" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "52748968" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48291328" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "22625632" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "52748968" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47780424" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47780424" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39132928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "52748968" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39233768" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "22022312" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47780424" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "15340872" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34109280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "52122640" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "35825704" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34035896" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "52122640" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "52122640" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47859976" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "36545032" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46227208" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49394256" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "52122640" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48255368" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "25141280" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46227208" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48255368" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46227208" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "33987880" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "20643352" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47494808" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48255368" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "19685384" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45825928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38319056" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45825928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37138272" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37156392" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45825928" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37318840" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50892408" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "16597528" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50892408" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49730584" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49730584" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "36947736" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50892408" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "36944800" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50892408" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49730584" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49730584" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "27377272" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "50800616" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "21843112" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "42894248" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48679264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48679264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "41819352" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38753576" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "54607952" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "35188024" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48679264" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "54607952" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49205616" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "27104200" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49205616" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "36066240" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "54607952" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "49205616" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34634528" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "21653776" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47246000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "28134408" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "19990992" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "25224960" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "42725064" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47246000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39945752" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "40399800" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "47246000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38278496" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "18675736" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "53356200" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "53356200" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37951600" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51144464" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38512848" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51144464" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "53356200" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "21712680" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51386112" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "51144464" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48408520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "30722344" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "24612304" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48408520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46669352" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "27443656" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "48408520" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45491768" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "41380160" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "40031136" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "26024032" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45491768" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45491768" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "40031136" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "29213240" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45491768" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "40031136" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "42511896" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "40708304" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "40031136" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "31360184" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "32877944" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "40708304" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "28175824" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46671272" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "40708304" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37066456" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45080704" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "34857176" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "40708304" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "45080704" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "24073824" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "48856416" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "45080704" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39689136" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "48856416" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38968544" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "48856416" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "22379960" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "15501128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "40031920" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "51061536" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "27932152" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "51061536" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38705232" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "51061536" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53206088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42503048" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "21454992" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53206088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "40047848" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53827928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "27037144" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53206088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42208040" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53827928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53206088" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39637784" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53827928" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "27803712" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29550624" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "43208592" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52464816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42186456" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "31726184" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52464816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52464816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "55336568" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "44863584" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42444376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "55336568" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "24967040" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "55336568" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "27558704" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42444376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "21909416" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42444376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "41394520" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "26122800" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "22083032" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39582328" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "26569728" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39582328" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "40646480" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "41547240" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39582328" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39467120" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "16041000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52114840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "40151848" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "28274656" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52114840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54028128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "43366792" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54028128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52114840" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54028128" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "41669712" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "18967248" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53870256" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "19031944" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "28749056" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53870256" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "28944944" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "43164528" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "41250224" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53870256" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "43754480" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "23659368" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "41250224" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42256016" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "26806664" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42256016" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "41250224" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "41250224" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "40199776" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42256016" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "24468168" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42256016" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53358176" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39842072" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53358176" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "24136416" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53358176" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "40840104" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38712904" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38920824" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52236376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53358176" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "28323952" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52548264" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52236376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52236376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52548264" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "28940096" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "41790016" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "21868016" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52548264" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54556376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "22985784" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39362360" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38958688" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "33271744" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54556376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "35663744" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52672080" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54556376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "16625680" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "48396656" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52672080" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52672080" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47879352" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29710736" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52672080" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47879352" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "30394680" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47879352" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46428504" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "17148040" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "14974304" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "17148040" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "44038592" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "44038592" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "17887104" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "14974304" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "31517064" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "44038592" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "21275192" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "32089032" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "44038592" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39792680" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "24628648" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "45836912" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52731728" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "35083784" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "44517248" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "51111320" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "44517248" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "33866000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "51111320" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "51111320" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "44517248" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47689304" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46116192" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "44517248" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "23095496" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46116192" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "27998536" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39638952" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46116192" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "37340960" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38348984" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "20788816" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "36120152" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "51928304" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "30035952" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "49608728" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "51928304" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "40908376" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "51928304" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "49608728" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "18134160" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42541024" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "49608728" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "31296936" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42541024" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "17340568" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "33893624" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "30732216" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42541024" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "22846480" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "33937504" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "44545832" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42581872" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "27385720" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "48209584" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42637544" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47020400" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42581872" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42581872" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47020400" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "40676792" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54442096" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "25923792" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47020400" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54442096" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "34734944" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "25701600" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "54442096" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "48413792" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "28439688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "47792544" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "19519560" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "42471376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "40877912" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "36562104" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "47792544" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "36753944" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "40877912" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "47792544" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "40877912" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "49315960" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "16324096" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "36027400" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "49315960" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "16911976" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "28369480" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "49315960" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "36906888" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "43499896" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "17056832" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "50567456" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41890728" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29278000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "48527592" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "30504720" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54605472" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "48527592" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "48527592" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "43197520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54605472" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "21361720" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54605472" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41728400" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38647552" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41728400" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "19124512" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41728400" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38141136" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "28712800" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "42932688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "21764448" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51959408" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51959408" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "40970304" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39184048" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51959408" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38786424" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "40970304" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51621056" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "40970304" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51959408" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "40970304" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "27825496" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51621056" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51621056" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29487984" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "25619432" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34264680" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "43015480" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51621056" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "55353992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "47913112" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "26873592" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46645088" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "55353992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29265488" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46645088" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "55353992" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41888960" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "19697608" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54723368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46645088" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "16222160" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54723368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "24067360" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38738576" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29000024" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54723368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "17770832" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "43780648" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38133728" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41618728" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51337808" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "22680288" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51337808" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54658296" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "24132088" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "37025896" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51337808" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54658296" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "22141600" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "22730320" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54658296" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "19621168" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "22141600" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39006400" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "37386824" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29379448" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "22141600" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "49967232" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "21552536" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "43118120" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41275632" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "31366056" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "49967232" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "49967232" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "44176408" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41275632" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41275632" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "15161544" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "43598408" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "43598408" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "28019008" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "21840504" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "27007448" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "42845184" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "43598408" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41498320" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41817168" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "15645352" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "28032136" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39578880" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54873848" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54873848" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "42639688" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "53101720" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41055640" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "53101720" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "54873848" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "22789744" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "53683496" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "53101720" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "53683496" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "40676952" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "21769056" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "40229096" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39106504" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "53683496" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38389512" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "52780656" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "21123416" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51984192" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "52780656" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38999224" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "52780656" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38653384" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51984192" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51984192" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51435264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "52780656" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51435264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51984192" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "24398352" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "40221016" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51435264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29209080" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38710096" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51435264" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "30711288" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51141232" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "24948016" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "44057720" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51141232" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "34668320" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "42479368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46940144" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51141232" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "42479368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "22075592" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "42479368" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46500136" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "21416520" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "28115656" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46500136" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "25727728" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46500136" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "42793000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "15231512" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41187312" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "41131016" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "35002040" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "53873256" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39407464" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "35361056" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "53873256" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51977168" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "53873256" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51977168" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "47962592" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "18962736" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "51977168" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46534464" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "19225376" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "36319552" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46534464" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46534464" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "35361160" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "36944512" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "36002376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49193600" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "23736504" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49193600" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49690672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "27189320" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41128272" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49690672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49193600" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53488552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49193600" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49690672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "24856208" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49690672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53488552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53488552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "40074352" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "25433896" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38487320" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53488552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "33743464" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "47582656" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50968496" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "21121840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50968496" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37785336" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46762424" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46762424" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50968496" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "35917528" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "22243160" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49497280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46762424" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "27302032" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "20441224" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49497280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "42024240" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49497280" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "25017848" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "19218544" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41106496" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39199064" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38243696" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "25597776" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41106496" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "52170448" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41106496" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "40490768" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38095552" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "52170448" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41106496" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51315824" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "52170448" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "24952072" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "21250408" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "27190408" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51315824" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41889944" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "31782976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51315824" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39891008" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "21385624" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "47584856" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45444536" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "32229392" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39891008" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45444536" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39891008" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "47215920" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "16947488" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45444536" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45684200" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "36683744" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45684200" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "20740792" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "26114336" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45684200" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "36509640" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41019112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49894480" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "19554632" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "24906448" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39169560" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "47694984" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "52883752" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "40577504" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "47694984" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "52883752" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38096376" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "47694984" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51514464" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "22535112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "52883752" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39928880" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "21039720" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51514464" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38046056" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39494568" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51514464" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "19459296" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "52659704" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37518664" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "52659704" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "24190856" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51056976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51056976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39515784" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "52659704" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37755040" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51056976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "52659704" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50233024" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51056976" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "28629192" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50233024" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "21783672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "30891296" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "43989600" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50233024" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37689768" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41493296" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "36729648" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "21098736" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41493296" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38128688" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49848008" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49848008" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "35675176" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41493296" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "18818400" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49788640" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49848008" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49788640" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "16703168" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "24548728" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "36098968" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49788640" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39347608" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "36554792" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37517912" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "16113512" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50054632" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49846960" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "28406968" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49255176" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50054632" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "42846808" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41443272" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50054632" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49255176" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "49255176" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "25605488" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53969512" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "22901896" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53969512" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "36012352" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34723176" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53969512" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "40710496" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "40245040" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "21534424" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "48533632" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38594312" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53553432" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "48533632" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38907328" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53553432" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "48533632" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "48533632" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53553432" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51467200" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51467200" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "53553432" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "27775160" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "28897440" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51467200" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "27271096" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "35141672" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "51467200" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "41829584" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "21375848" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34394712" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "54170608" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "47296792" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38062112" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "54170608" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "54170608" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "47296792" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "35887456" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "21295096" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "47296792" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "48951832" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38416840" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "48951832" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "24235424" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "48951832" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "37733528" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34820848" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "19376416" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "50817568" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "34638688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "47871064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50817568" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38204704" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "47871064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50817568" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38950272" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50817568" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37543448" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "47871064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "30916040" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51573440" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "47871064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51573440" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "32046072" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "27494304" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45939464" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51573440" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "43085480" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "23674480" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "42508672" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "43177128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "55261864" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39253376" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "43177128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "55261864" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "43177128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38060808" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51062064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "16695896" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "55261864" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38021008" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "17115048" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51062064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51062064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "36856928" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37765680" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37585648" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "20101744" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50568024" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51270824" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "48455672" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "25073080" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39940248" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50136432" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "48455672" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50136432" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "48455672" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37825280" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50136432" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51266120" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "20894920" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51266120" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "30353744" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "25406912" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "28476416" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51266120" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "44012368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "42177344" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "21405808" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "42077920" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "40964168" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39052016" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "42177344" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "42177344" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "40964168" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38682448" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "40964168" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "42177344" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50566816" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "22750960" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50566816" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "40964168" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "21926704" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38895400" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50566816" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50566816" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38103040" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38089664" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "24549416" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51142936" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "36664624" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51142936" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "34193160" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50310544" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50310544" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51142936" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45621752" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "21050056" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50310544" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45075624" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45075624" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "19181792" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "25587064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "33439368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "41330976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45075624" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39668520" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "17277368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "32638800" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "33794472" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "52529240" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46188144" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45250064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "34989944" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "52529240" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45250064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "47921368" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "52529240" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45250064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "21447000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45954072" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45954072" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "20363872" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39287360" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39362936" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38316136" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45954072" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37255376" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "20964600" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51959056" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50691032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39845504" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51959056" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38962408" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50691032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51959056" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51640264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50691032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51959056" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50691032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "23321544" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51640264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "26310232" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51640264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39291288" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51640264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "41842976" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38016064" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "18890400" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "49880840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "40577128" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "49880840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "52969352" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "35724568" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "52969352" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "49880840" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "31995584" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "52969352" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "16845968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "22263896" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "20244232" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39902440" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "16845968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "16845968" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38840344" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39285744" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "16261736" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51735264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38104192" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "36248528" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51735264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50699640" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37149848" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "48524632" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51735264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "48524632" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "50243432" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "51735264" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "30501656" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "48524632" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "47392904" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "31189888" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "47392904" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "21869344" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38683592" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "44634808" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "47392904" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39063016" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "42256712" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "21100232" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "42256712" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "31937448" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "52465048" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "52465048" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45770688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "42256712" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "52465048" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "43691312" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "21671832" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "21893808" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "32895272" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "43691312" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "28028032" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "32278512" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "43691312" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "20106024" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "42425728" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45767688" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "27683608" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "43326424" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "40922008" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43326424" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "41683072" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54297264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54297264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43326424" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40073520" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53225904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54297264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "20254568" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38131376" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53225904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "24115952" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53225904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "26524776" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37676072" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40232240" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "21351504" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50651048" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53086152" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38700760" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50651048" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50651048" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53086152" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37679008" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53086152" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50549784" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50651048" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53086152" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50549784" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29059240" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50549784" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29358568" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "22390120" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "30517744" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43059152" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50549784" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54070880" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "45522112" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "21892336" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54070880" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "44260904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "39628792" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38736760" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54070880" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "44260904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "15912928" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "44260904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53479936" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53479936" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "17761944" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "26832832" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "30764840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53479936" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "42371944" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "30734568" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40588440" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53479936" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "20561136" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "44711936" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53240272" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43447760" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53240272" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29509208" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53240272" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "41790400" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43447760" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "18612224" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43447760" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40807032" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40807032" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "17152736" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "32978304" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "32990792" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36652328" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40807032" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "47447520" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "18151816" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36700488" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "24244296" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "44428408" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50364728" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "49073912" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "44428408" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "39297080" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "44428408" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "49073912" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36968176" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50195904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "49073912" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "21212856" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50195904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "25317328" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36806656" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50195904" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38642384" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "32969456" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "19839512" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "34579344" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51396816" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48032880" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37733056" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51396816" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37174704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51396816" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48032880" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51396816" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48032880" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "49894856" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "24073680" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "15871560" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "49894856" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "39897760" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "49894856" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36994144" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "49894856" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "39833288" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36673840" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "52522192" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50289272" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "24728784" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "52522192" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48004688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40409128" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37708656" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48004688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "52522192" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51526584" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "20315176" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48004688" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51526584" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "19102632" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38031064" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36785104" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51526584" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "27023424" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "42303648" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50305264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "18053752" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40264544" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50305264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "34048008" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50305264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "34944752" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53038704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53038704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50305264" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "47829256" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "19614248" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53038704" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "45858200" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29920992" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "21200416" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "45858200" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "45081408" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38382632" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "45858200" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38271776" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "23656560" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43252192" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43252192" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51245224" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "27221520" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "41829168" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51245224" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43252192" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51245224" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40155384" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43252192" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "26687192" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40155384" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51245224" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "35544680" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40155384" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "26866040" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "48731560" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "42331224" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40155384" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "22164656" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46496432" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "41437192" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54513080" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "39284024" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46496432" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46496432" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54513080" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37654464" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "21348640" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50772064" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54513080" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50772064" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "26490352" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "16044824" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "40967072" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "50772064" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36348256" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "39605128" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "36898056" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "19053464" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "49937224" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "33286088" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "52268944" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48337088" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34479688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "52268944" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48337088" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47660456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "52268944" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48337088" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "22834216" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46257352" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46257352" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "18645240" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "26353096" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "28442344" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "40199256" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46257352" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53106520" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43348912" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "19875040" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "36891832" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "41060056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53106520" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "41060056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53106520" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "36545496" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "41060056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "17570736" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "49541696" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "33071464" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "17507456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "49541696" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "32317456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "49541696" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "33530264" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "49541696" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46769528" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "32092112" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45694408" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "23993272" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44713264" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44521256" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44713264" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "40486584" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44713264" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44521256" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38699680" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "51701240" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "20296832" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44521256" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "51701240" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "21636648" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "32404216" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "32661504" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "26764192" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "51701240" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "41215912" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46755456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "18840416" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45526456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "31041864" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "40026736" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45526456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53963224" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "31809056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45578288" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45526456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53963224" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53963224" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44171608" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "24388352" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "27552312" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44171608" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "40318056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44171608" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43206136" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "40056912" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "52115608" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "26245160" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "42387104" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "36109440" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "52115608" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "55150976" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "52115608" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "55150976" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48459936" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47261584" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "55150976" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "15804624" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "22195464" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "27444840" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47261584" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47261584" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "42128952" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "28177056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "42010576" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "40706272" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47261584" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "26903720" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "52759352" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "41024728" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "36040448" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "52759352" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53216344" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48158168" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "52759352" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53216344" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53216344" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47001264" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "24040592" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47001264" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "17468016" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "27152976" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "40532312" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47001264" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "29449480" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53043768" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "15790888" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45070456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53043768" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "28451680" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43538200" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43538200" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43515464" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53043768" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53043768" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43538200" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "41484032" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "23123040" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43538200" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "54934096" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "32549032" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "21189936" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "54934096" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "54934096" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "32606944" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "37555600" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "22873704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "37130168" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45103448" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "40114760" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "50354512" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45103448" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45103448" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "50354512" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "40386608" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38579680" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "18661064" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "50354512" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34482424" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "50354512" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38579680" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34985344" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38579680" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "21261592" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "30339584" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48459768" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "18480160" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44639744" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46257056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "31945472" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "33104440" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46257056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43341064" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46257056" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43341064" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46208896" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44957456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43341064" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "19073200" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "25100360" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44957456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "36352440" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "35630152" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44957456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "35879272" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48668704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "17051456" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "34457816" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48668704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48766552" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "31108376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48668704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "31880168" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47595312" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47595312" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "44253376" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "48668704" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "25071200" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "47595312" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43338168" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "21772392" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43338168" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "41869160" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "39870480" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "41273688" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "43338168" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "23811832" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "39494248" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53149640" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "34822280" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "52093096" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53149640" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53149640" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "52093096" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "34479488" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47404408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53149640" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "52093096" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47404408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "21682016" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "18573080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47404408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38818984" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "23680728" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37012136" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47404408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "36947912" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50610992" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "49820144" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "24413264" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48750872" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "49820144" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "33867032" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46660040" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "49820144" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48750872" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48750872" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "45642952" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "20059272" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "45642952" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37756840" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "25804184" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "45642952" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "28272536" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "36727896" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "49713816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "19460816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "41156360" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "49713816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "25506032" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40315768" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40315768" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40437648" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "49713816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38281000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "49713816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40315768" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40315768" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "51509208" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "27225488" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "36206112" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "51509208" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "25849712" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "35474736" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "51509208" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "27746976" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47824624" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "21318064" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "30673096" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "16352464" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47824624" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "31689480" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47824624" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "16352464" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46518584" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "17424496" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "16352464" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "44629032" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "44629032" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37029176" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "16352464" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "25390880" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "44629032" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37104176" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "44629032" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "42002152" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50883968" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40403296" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "26166040" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48756584" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "28874872" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53796608" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48756584" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40616624" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53796608" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48756584" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "15319024" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "41162968" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53796608" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "41162968" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "35534584" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "19758344" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "35565352" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "31666664" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "41162968" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "17775792" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "49223816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "33412656" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47468408" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37203776" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48055768" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37284208" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46553440" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48055768" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48055768" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46553440" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "49582144" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "20291560" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46553440" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47610272" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47610272" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "24900240" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37186792" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "27834432" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47610272" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37494072" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "41566336" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "24558808" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50257512" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50257512" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "39347056" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "27670800" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "39347056" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50257512" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "42602824" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40751616" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "39347056" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50257512" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "39347056" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40751616" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "28679920" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40751616" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "23348424" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "30537456" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "39000080" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "44473888" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40751616" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "24627768" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "41310440" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37600072" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40768680" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50383800" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "41310440" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "39142800" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50383800" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "41310440" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50383800" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "21483288" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53295520" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "33239744" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53295520" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "16851016" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46631912" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53295520" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "36955240" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "44548752" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "16599760" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "36606552" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "33361632" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50595200" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57525664" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48571696" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57525664" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "33104920" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46571488" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48571696" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57525664" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "44933040" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "48571696" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "20038608" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "24211096" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "44933040" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37554752" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37976920" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "34531184" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "44933040" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "33815048" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "21406904" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50485624" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50485624" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "40009456" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47920016" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47920016" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50485624" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "39004176" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50787816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47920016" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50485624" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50787816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "22948888" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "47920016" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "24755184" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50787816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "32088616" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50787816" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "41194216" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46183648" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "39962896" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "44063704" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "26252032" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "44063704" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "52800352" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "36026168" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "48134032" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "52800352" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "44063704" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "52800352" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "20167632" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46823728" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46823728" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "26890120" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "21856128" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "41235896" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46823728" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "26789432" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "39941840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "41038856" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "14938288" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "40024536" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "34256224" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "52701896" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "35240120" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "52701896" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "53009496" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "52701896" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "53009496" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "47499272" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "53009496" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "18848080" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46052728" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46052728" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "21245112" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29038544" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "42092680" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46052728" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38071544" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "19767248" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37515776" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "40040376" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37386560" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "50875920" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "40040376" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "50875920" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37504096" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "40040376" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "50875920" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "40040376" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49740472" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49740472" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "50875920" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "21118688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29778512" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38378752" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49740472" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "31093680" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37622944" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49740472" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "26888072" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "44611392" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "50129280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "43265496" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "50129280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "36238592" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "50129280" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "48887920" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "43265496" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "43265496" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "17583576" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "48783672" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "48783672" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "21742768" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "24225384" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "39037408" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "33460176" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "48783672" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "33342040" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37637944" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "20806744" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49420368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "28108888" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "47163904" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "42552144" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49420368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45776432" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45776432" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49420368" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "40235432" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "22118000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45776432" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "52922256" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "31981016" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "20407040" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "52922256" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38173688" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "44953712" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "52922256" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "43660768" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "36246744" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "25108736" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "28460904" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "43660768" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49710864" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49710864" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "43144408" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "43660768" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "43660768" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49710864" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "41882800" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "23046344" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49710864" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "41882800" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38733440" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29971512" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "41882800" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "41882800" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37729392" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "31815528" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "43945392" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "26116488" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49964736" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "42056528" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49964736" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "35299104" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "42056528" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "49964736" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "47172888" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "47139840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "42056528" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "15697528" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "47139840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "17872880" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "28238960" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "30377248" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "47139840" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "42978912" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "41966408" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "16856536" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "30850448" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "27500896" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "54188856" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "32354968" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "54188856" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "26606392" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "32610800" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45551064" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "54188856" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "26606392" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "26606392" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "19105288" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "44866264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29537624" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "44866264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "20058984" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "36907016" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "43204408" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "44866264" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "23953512" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "36862832" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "40698512" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "23953512" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "36862832" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "40698512" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "15957080" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "15944888" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "40698512" - } - ] - } -] diff --git a/packages/cp-gql-mock-server/src/metric-datasets-1.json b/packages/cp-gql-mock-server/src/metric-datasets-1.json deleted file mode 100644 index 70c0873c..00000000 --- a/packages/cp-gql-mock-server/src/metric-datasets-1.json +++ /dev/null @@ -1,34493 +0,0 @@ -[ - { - "name": "AVG_MEM_BYTES", - "metrics": [ - { - "time": "1970-01-18T05:54:08+00:00", - "value": "30516000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "56348000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "41884000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "30372000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "42724000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "63432000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77332000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "72904000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "67324000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85496000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77000000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "90608000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "71924000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77000000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "80116000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "90608000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77000000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "80116000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "90608000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "80116000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77000000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "90608000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "38760000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "29700000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "32284000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "63968000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64856000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "42416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "68944000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "69080000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "47160000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76248000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "71816000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77136000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76424000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76248000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77136000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76424000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77136000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76248000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "39056000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76424000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37484000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60040000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37540000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58576000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "65056000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "68472000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "69240000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73336000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73080000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "69656000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "80248000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77336000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "81016000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77336000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "81016000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "29684000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "38840000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77336000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "25564000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60328000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "38596000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "43736000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "69376000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "65176000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60632000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64728000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "68760000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73472000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64728000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77968000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "81656000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64728000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77968000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "81656000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "77968000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "30240000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60168000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "38728000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60212000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64132000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "63752000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60492000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "69036000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73676000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73340000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76924000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76748000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "73644000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76924000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "81316000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76748000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "76924000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "81316000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "30676000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "37816000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60444000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60956000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "60236000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "65292000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64332000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64532000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "69380000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78084000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "72516000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66068000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66068000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76612000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78084000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78084000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66068000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76612000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37672000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "38080000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30752000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60252000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60772000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64780000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63828000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69388000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64356000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64852000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73564000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77068000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77148000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77068000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64852000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64852000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77068000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77148000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77148000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37460000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "38008000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "60132000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66076000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37884000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69660000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69584000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64924000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78356000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68508000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73168000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77204000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "81360000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78356000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "78356000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77204000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "81360000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77204000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37448000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58716000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37484000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58580000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63136000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69744000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64548000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73328000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67420000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73244000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77340000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63580000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "81520000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "81520000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77340000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66132000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77340000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66132000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58968000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36696000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37608000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64284000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58524000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64820000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "72524000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67952000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69428000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77612000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77124000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73064000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77612000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77124000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "80232000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77124000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77612000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "80232000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37388000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37248000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58468000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64588000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63852000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68460000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62944000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69700000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77380000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76644000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "72664000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76644000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77380000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76248000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77380000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76644000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76248000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76248000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37956000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36972000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63076000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58940000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37484000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64752000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64332000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68188000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69352000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75868000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64332000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75868000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77032000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66380000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66380000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77032000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "75868000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37996000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30260000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77032000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36908000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "59116000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "59676000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64764000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69628000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64296000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73212000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68384000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73460000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77088000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "81404000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77556000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77556000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "81404000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77088000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77088000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "42320000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37484000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58616000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63436000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63896000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58704000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "67904000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "72652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "71576000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76228000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "72512000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76688000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "80192000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76228000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76688000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76228000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30160000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "80192000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41276000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30524000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37672000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64384000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58916000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62836000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "65144000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68620000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "69496000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "72824000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77176000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76300000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77432000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77176000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76300000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77432000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76300000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77176000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "37972000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "36740000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77432000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "59436000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64860000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58548000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68444000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63084000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68132000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "73040000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "72732000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "80412000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "77652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "80412000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30768000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "76624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58220000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "41880000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67284000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62652000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "68684000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71884000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "72780000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75444000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80460000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79540000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80460000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79540000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80460000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29796000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79540000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41748000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41240000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "63884000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62268000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41928000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "72580000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71484000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "68120000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74556000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76676000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71696000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76676000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74556000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80400000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76676000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74556000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80400000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80400000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76676000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74556000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62228000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41236000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67348000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67048000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61852000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "70044000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75396000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80004000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74140000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74140000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80004000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74140000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80004000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74140000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30304000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41740000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30492000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46656000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66472000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62972000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67128000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71072000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66556000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75832000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "78752000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "78752000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "78752000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41548000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42828000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "64488000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47600000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "63176000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65000000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67560000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71872000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75968000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66536000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76264000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75968000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66536000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75968000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66536000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75968000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41344000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41252000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "63024000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62984000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41912000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "68224000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "72080000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71216000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71808000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76176000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75312000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80000000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76176000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75312000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80000000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76176000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75312000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75312000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76176000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80000000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80000000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30460000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "33728000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61872000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46244000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66992000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66724000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "43784000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "74908000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75176000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62208000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79004000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65792000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79272000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79004000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65792000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79272000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79272000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79004000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65792000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30348000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65792000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "34076000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "42056000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67520000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46040000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66896000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67676000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "72008000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "72128000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79296000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "75692000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79788000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79296000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79788000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79296000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "79788000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29808000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29908000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "58196000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30348000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "33420000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "63784000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "41856000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46856000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "72200000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "67396000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "71968000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "72372000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76296000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76296000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76296000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76296000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "76576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "80564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "30256000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "33672000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46008000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "33552000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "47108000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "72456000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66592000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76552000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "71440000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75408000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76552000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76048000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75408000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76048000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76552000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75408000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76048000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76552000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75408000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30344000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62484000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37812000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47372000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66580000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68356000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "54540000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "70412000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76036000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74764000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76036000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79372000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76716000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76036000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79372000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76716000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76716000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76036000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79372000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30576000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76716000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42188000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68540000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67560000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47788000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "72672000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67748000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73148000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80352000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76072000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80168000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80352000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80352000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80168000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80168000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "33248000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42536000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "48064000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "41484000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "71700000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67200000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "72120000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74772000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "71296000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78976000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74772000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74772000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78976000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78976000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74772000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "36424000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30404000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62636000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63300000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47404000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66860000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67908000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "59300000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76092000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76068000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62884000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79652000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76092000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79652000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76092000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79652000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76092000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30788000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30268000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "31256000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42220000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "41752000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "64344000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67628000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "71716000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63752000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "69456000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79908000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66304000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79908000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66304000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79908000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66304000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30744000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "30220000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "38280000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42376000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68520000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "55996000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60092000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73128000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "72188000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77300000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80296000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76672000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77300000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80768000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80296000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80768000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77300000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "40532000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "61516000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80768000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77300000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37484000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "70368000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80768000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37432000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74464000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "59180000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68148000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74464000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "64324000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "72748000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74464000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68924000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80428000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "39012000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77116000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77116000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "65092000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80428000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68676000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37948000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58988000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77884000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "59152000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63412000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "69024000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77884000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77884000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73632000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "72620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76204000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "38096000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80800000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80800000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "64248000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76204000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76204000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68856000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "80800000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "37536000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29804000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42328000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63448000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "77040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "29812000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "68560000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "64100000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "71780000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "42900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "43868000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76388000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "76240000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62812000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76240000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64860000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76240000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "31052000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64860000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58504000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47288000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29748000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "59188000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63836000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "67768000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72020000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76168000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64944000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73640000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76168000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76628000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76168000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77736000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76628000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76168000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76628000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77736000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37064000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77736000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "30228000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "41356000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "30240000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63076000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62892000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "68392000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58632000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71596000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63276000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76072000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72492000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75172000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76072000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75564000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76072000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75172000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75564000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75172000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "30008000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75564000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "30200000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "59104000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64592000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29860000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "68176000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65624000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60876000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76880000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64972000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74180000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76880000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77904000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77904000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77764000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "30000000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37088000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77764000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "42864000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "54288000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "30080000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "70160000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "43880000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60348000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62312000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75488000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64148000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73572000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75488000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77156000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "75488000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77156000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37484000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77156000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58712000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "59612000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38592000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "59376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69600000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63196000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64212000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73184000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64532000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64212000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74252000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38588000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77324000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60248000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77324000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77324000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38640000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77324000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "74336000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "37936000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65180000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81504000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81504000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "70292000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64980000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77972000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81504000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "70092000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77772000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77972000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38504000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77772000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64412000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77972000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77772000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69524000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "30732000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "61164000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76692000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60296000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64748000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76692000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73956000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76692000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64080000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77540000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29772000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73288000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77540000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76872000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60208000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76872000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77540000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76872000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73276000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38512000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76584000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "59624000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38172000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69196000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "59660000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76584000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69512000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76584000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73804000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73804000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38740000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73096000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73804000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "80776000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60740000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29700000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69212000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "80776000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73308000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38724000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29928000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38748000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73308000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73308000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64476000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69612000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77292000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73308000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "68572000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77292000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38724000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76756000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76756000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "64820000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77292000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "68860000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "38272000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76756000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "60420000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "29804000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77044000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77044000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62048000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "69116000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "66144000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "77044000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73724000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80892000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29700000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75352000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80892000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60352000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78424000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64112000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78424000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80892000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78424000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73320000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38160000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76904000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65188000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38784000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76904000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69796000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64852000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76904000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "68940000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77980000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38908000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77980000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77644000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77980000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77644000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61100000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71104000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77644000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "30060000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29752000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75200000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60100000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "59224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64872000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75200000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64028000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73056000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "75200000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29888000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77152000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77152000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60492000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76956000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76956000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77152000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64076000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38072000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76956000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74164000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38508000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60452000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69156000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73244000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69600000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38096000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72672000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81948000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81948000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60716000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81376000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69924000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81376000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81948000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73508000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38948000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81376000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81700000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65064000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38536000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81700000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64048000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70176000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69816000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81700000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77344000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77496000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77344000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38980000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65492000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77496000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77344000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "30000000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77496000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69580000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78284000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29940000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "59824000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78284000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64432000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "59760000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72616000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78284000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "63856000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29724000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73260000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60416000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64000000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37852000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73208000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37996000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76792000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "61208000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76792000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70056000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69392000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76792000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78240000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78240000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74000000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "39492000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74000000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78240000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60764000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74000000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69460000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60140000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74068000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74068000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60960000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73008000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74068000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64544000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "30536000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77104000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73248000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77336000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "40276000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77104000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77336000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77104000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77336000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69444000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78148000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37932000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60456000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "59316000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78148000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69452000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69184000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "78148000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "74060000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37912000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81740000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72768000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "81740000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60256000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69084000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29716000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "37768000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73180000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80860000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64056000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38948000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "68664000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80860000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65200000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "80860000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76344000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70312000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77480000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "38712000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76344000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77480000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "76344000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64496000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29800000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77480000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69608000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "60472000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77288000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "29792000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "59860000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77288000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "65256000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "77288000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64956000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "73952000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73140000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77024000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "29812000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77748000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "61768000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77024000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77024000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65352000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77748000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77748000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74560000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38128000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77632000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65148000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38880000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68724000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60368000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77632000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77632000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77428000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69232000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38160000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73840000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77428000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77428000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60820000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73840000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73840000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69012000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "30152000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60256000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74124000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "29752000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "59184000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74124000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65252000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "63904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74124000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73436000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72608000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "30336000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78044000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77720000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78044000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39272000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64208000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77720000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78044000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77720000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68816000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39580000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60704000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77000000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77000000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "70088000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74184000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77000000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "70016000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37436000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81864000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74112000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81864000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58624000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81792000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81864000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81792000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68280000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81792000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39036000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72888000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38604000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65420000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "80568000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "80568000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65680000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "70532000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78212000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "70792000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "80568000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78472000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78212000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78212000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78472000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64436000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "29700000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "70060000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78472000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77228000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "29760000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60824000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "59792000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65396000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77228000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73580000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64400000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77228000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77676000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72080000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77676000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60732000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76680000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65508000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76680000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77676000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76680000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73692000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38648000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77788000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39104000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69392000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77788000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60592000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69800000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77788000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38648000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73896000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73896000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60136000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69344000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73896000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72928000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "29796000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38680000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37552000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65304000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81632000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64172000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68888000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81632000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81632000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78096000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68780000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78096000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76964000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37548000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76964000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78096000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64236000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69348000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "39228000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76964000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77028000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38504000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77028000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69876000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77028000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74484000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69600000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74208000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "82164000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "30012000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "59764000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81376000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "82164000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81376000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "82164000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64860000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38268000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "81376000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "73044000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64620000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77652000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "37996000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77652000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60548000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77412000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77652000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69464000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "38600000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74072000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77412000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74072000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64528000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "77412000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69136000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "30100000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74072000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76808000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60432000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65516000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "60960000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76808000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76808000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "65056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74212000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "29788000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "74264000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "78308000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60196000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78308000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77336000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78308000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "64804000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77336000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72484000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38480000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77336000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38876000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77092000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60804000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77092000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69500000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60628000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77092000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73596000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69836000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73596000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38832000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73932000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60800000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73596000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81612000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69496000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81612000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74104000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81612000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39524000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81272000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39952000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65584000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69680000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81272000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65916000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "70004000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81272000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77864000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38592000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77864000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78708000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78708000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77864000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65028000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69172000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78708000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "30204000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77356000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60316000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77356000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61064000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65372000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74068000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77356000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65820000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78164000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29736000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74004000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78164000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60616000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78100000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78164000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78100000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65224000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39852000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78100000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73408000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65336000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38604000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69424000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65184000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78128000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "68760000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78128000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39728000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77464000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60964000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78128000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77464000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77464000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69668000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29744000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74268000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "64416000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60336000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74268000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73120000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74268000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63920000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76696000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73332000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60980000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76696000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76916000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76696000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65588000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76916000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73772000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38592000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76916000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39724000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78380000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60592000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78380000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60548000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "68608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78380000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "69756000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "37472000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73852000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59172000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81532000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81532000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "68372000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "30520000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29964000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72980000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "30980000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "80660000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "30520000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "80660000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "30980000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "31320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "80660000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38208000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47572000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65052000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "80660000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "67028000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "37484000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76604000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "68636000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "80188000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76828000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59216000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76828000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "80188000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "68140000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73252000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "30280000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76828000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "80932000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42288000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "80932000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59256000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63604000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "64956000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29772000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71284000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76396000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73140000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "42196000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62944000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77236000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76396000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "76396000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77236000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71648000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "77236000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38572000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75232000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "38508000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75232000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59556000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "68404000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "75232000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "60856000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73012000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "29792000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "70172000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81196000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61036000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74268000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81196000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81948000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65772000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81948000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "73956000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81196000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "81948000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78052000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39036000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65456000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "39140000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78052000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "78052000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "66560000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "70056000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "70648000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77736000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39100000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77736000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "79352000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64172000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69284000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "79352000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77736000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76964000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "79352000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29724000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76964000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60840000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76964000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61032000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73128000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29904000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65640000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76704000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73832000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60864000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78432000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76704000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65472000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76704000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74168000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78432000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78432000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39208000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78264000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39568000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61136000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78264000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60040000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69832000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78264000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73928000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "70352000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38660000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73928000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60148000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74960000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73928000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69168000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74960000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73776000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74960000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73776000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29832000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60172000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73776000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39380000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65244000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29904000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65172000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73428000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39916000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69780000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78036000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65508000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77460000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78036000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69596000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77460000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78036000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78300000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77460000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39616000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78300000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38840000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60864000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78300000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69560000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60328000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74168000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "70336000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39620000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "81848000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74432000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60248000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "82112000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "81848000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64504000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64504000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "30852000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "82112000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "82112000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65528000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39788000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38680000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65528000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "66828000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "70916000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65788000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78596000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69876000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38512000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78580000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65360000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78596000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69448000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78596000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78580000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78580000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78152000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "30424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78152000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61660000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65756000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78152000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61052000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "66272000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74452000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60516000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78548000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74456000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78548000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78552000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65124000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78552000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78548000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73820000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38148000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78552000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77916000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38684000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60492000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77916000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61216000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77916000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69188000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73944000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69408000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74008000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73944000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73944000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74008000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69312000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74008000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29812000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73912000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73912000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61268000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29908000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "73912000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65364000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "39500000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65024000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74572000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78156000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38508000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69112000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78156000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64108000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77816000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "68716000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77816000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "78156000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38832000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77816000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76900000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76900000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "30660000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "60320000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "69516000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76900000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "61528000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74116000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65112000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59152000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "81796000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74320000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77904000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "81796000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64484000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72668000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "81796000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77904000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76764000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38644000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "77904000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64088000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76764000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "38172000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "65424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "68696000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "76764000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "70536000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64968000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77704000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69576000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77704000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77704000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "29700000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77760000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "29700000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77760000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60448000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60148000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77760000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65232000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72912000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "29984000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76496000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71924000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60060000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64156000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76496000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72852000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76496000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76948000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38796000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60796000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38596000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76948000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60596000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69984000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76948000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "70092000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38888000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74080000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74080000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61248000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74188000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "81868000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "70232000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74080000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74080000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "81868000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74328000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38796000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "81868000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "82008000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "82008000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38676000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64704000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "82008000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65440000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69816000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38668000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77496000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69024000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78232000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77496000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65212000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "70324000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78232000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77496000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78004000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78232000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "29840000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "30348000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60280000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78004000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78004000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61024000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64728000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "29900000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72912000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64952000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77008000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73656000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60648000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64232000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77232000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77008000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73952000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77232000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77008000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77024000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77232000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38856000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60960000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77024000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38740000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61120000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77024000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69144000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69816000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73752000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38736000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73912000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "59712000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73752000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73752000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69364000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73912000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73912000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72940000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39736000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "29840000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "81644000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65404000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38648000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "81644000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64656000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69492000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38720000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78196000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78196000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76936000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69516000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78196000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76936000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76936000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38512000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77188000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38544000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61308000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77188000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "70012000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61372000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77188000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69556000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "29908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74612000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60464000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74164000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "82292000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "82292000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "81332000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65072000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "81332000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73768000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "82292000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "40252000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "81332000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77864000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65332000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77864000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38924000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "66320000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77864000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69932000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38684000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69904000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77612000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77612000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65144000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78600000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78600000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77612000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69744000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77424000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "78600000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "30008000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77424000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "29708000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60108000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60852000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77424000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "65012000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64436000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73196000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60388000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73652000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76780000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76780000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77228000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64104000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "73312000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77228000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76780000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76896000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "77228000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "39324000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "61128000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76896000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38748000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "76896000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "70404000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "60236000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69444000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "74500000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "38872000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73028000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74500000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60872000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73028000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74500000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69764000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73860000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73028000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "30076000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "81540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39660000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "81540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39448000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70484000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65412000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78164000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37960000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70020000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78164000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64968000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78204000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70080000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78204000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78164000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77760000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29780000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78204000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77760000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29884000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60096000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "62056000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77760000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65520000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29828000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "66664000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61016000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78944000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65624000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78944000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73808000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78944000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38768000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77904000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65568000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77904000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38980000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77904000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69656000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60468000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78360000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38220000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "68972000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78360000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "59708000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74084000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74084000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78360000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69284000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74084000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72868000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72868000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29776000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61360000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64432000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72868000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61132000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74152000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "30212000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64716000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38344000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73412000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78248000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77508000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78248000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64936000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77508000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "78248000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69536000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77508000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "39172000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38704000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61172000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70460000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "59688000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "68384000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "37996000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75060000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "59132000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "82740000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72480000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "82740000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "80160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69048000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "82740000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "80160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72632000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "80160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "80312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38428000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38180000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64524000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "80312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69124000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "80312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64800000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38440000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69400000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76804000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64024000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77080000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76804000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76804000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "68624000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77080000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29956000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76528000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77080000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76528000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60532000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76528000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60316000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64804000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65056000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "30924000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73508000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60616000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73248000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77596000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61128000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77596000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77344000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77596000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77344000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77344000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38004000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "66240000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "66240000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60808000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38636000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60592000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "66240000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69504000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38508000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74112000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74112000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74272000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60564000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74112000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "69920000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "81440000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74112000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74016000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "81440000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38640000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "81696000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "81440000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38408000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "81696000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64736000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "81696000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65060000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "68368000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "38000000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70172000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77576000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77576000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77852000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64692000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77852000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77576000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "68780000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29764000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77852000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76972000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76972000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29700000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "60480000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "76972000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65088000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "61060000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "29832000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "73784000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "59620000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "74148000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "77880000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64632000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77880000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78244000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77880000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78244000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73840000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38140000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77424000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78244000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77424000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38984000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60856000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "61156000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77424000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69560000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38448000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70364000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74160000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74460000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "59936000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74160000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69092000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74460000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74160000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "30028000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74460000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73180000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29752000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73180000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60584000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65192000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73180000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38468000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64976000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72872000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "25608000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76960000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69064000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65296000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77768000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76960000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68368000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77768000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76960000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "41420000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77576000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77768000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29796000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "42204000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77576000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77576000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "59796000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "67724000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "30484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71308000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63984000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73192000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58896000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80004000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80004000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63496000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76264000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76264000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80004000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76264000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37888000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38188000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "59804000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69052000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60016000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73148000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37628000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80828000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73312000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "59388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80828000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80480000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69240000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80480000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72824000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80828000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80504000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38036000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80480000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64412000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38128000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80504000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "80504000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69012000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65156000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69244000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76692000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76692000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63696000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76692000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68304000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29700000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77512000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77512000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63900000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60268000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77512000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72596000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63852000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29796000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73060000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76692000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60020000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64108000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76692000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76644000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72812000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76644000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76692000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76644000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38156000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76396000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38816000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "59736000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76396000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60572000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76396000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69276000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74132000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37672000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58656000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74132000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73876000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69268000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "81556000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74132000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73876000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74132000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "81556000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "81044000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43580000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "81556000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "81044000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78592000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38532000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83368000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65824000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "81044000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "37484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70424000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63728000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78104000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68336000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78104000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76520000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78104000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58732000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76520000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29700000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "76520000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60556000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64796000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "29752000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72980000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65536000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "59940000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77588000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "74232000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78328000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77588000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64260000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77588000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78328000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73980000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "39396000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "78328000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77052000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38100000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60380000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77052000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "77052000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "60540000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69588000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "73684000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69748000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "38588000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60076000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73844000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81364000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70376000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81524000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81364000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73448000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81364000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81524000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82152000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81524000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38352000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82152000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38152000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64292000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69404000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82152000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65216000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77084000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69824000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38512000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77084000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65312000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78008000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69912000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77084000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78008000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "29832000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77592000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78008000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60468000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77592000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64888000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60640000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77592000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64936000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73592000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "30956000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60372000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73640000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76664000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76664000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65392000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77728000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76664000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75112000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77728000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77728000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38948000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78184000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "39088000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60436000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78184000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78184000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69132000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "61088000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "39012000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68768000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73228000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60996000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "80396000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73376000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81048000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "80396000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70616000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74200000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "80396000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81048000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82392000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38804000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81048000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64704000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82392000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "39752000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69816000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "30556000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "66188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70276000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77496000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "39492000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78980000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77496000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64884000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77496000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78980000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68980000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76660000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "30200000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78980000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76660000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60336000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "30212000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76660000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64944000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60572000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72624000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "30628000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65180000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "59768000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73064000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64376000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78176000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73584000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78176000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76656000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "39372000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "78176000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76656000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "39984000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69472000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76656000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60968000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69664000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74080000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "37996000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74080000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74272000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60100000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74272000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69360000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74080000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74080000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73968000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74272000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81648000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74272000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "37308000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81648000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38844000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62840000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65056000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68680000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "81648000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75848000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70168000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38648000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "63720000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75848000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77848000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68832000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75848000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77848000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "30056000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77848000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76512000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "60280000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76512000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "76512000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "59452000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65392000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "29812000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "63852000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "59208000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77672000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77668000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64768000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77672000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72952000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77668000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77672000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77048000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38640000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77668000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "61428000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77048000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38212000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69108000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77048000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "61204000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70412000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74220000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "37416000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74220000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "59112000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73996000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68632000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74220000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "73240000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "74220000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "37952000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "80920000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64520000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38276000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "80920000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "80920000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64304000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69632000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "38888000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "69416000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "77312000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77312000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64940000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77312000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69540000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77220000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "30696000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77220000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "30048000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58772000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "59308000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63884000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77220000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "29820000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72076000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64552000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76676000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58576000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73248000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76676000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76832000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64644000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76676000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72836000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76832000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76832000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76932000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38868000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60016000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76932000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38784000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60628000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76932000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69400000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37572000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69324000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72976000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58748000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73932000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72976000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69880000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73932000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72976000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72976000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73464000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73932000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81656000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73932000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38036000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37836000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64692000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81656000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81656000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69804000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60620000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77484000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63692000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38148000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64868000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65732000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77484000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69980000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65732000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77484000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77148000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65732000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77148000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60532000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65120000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60472000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77148000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74328000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64820000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77912000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73004000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "59288000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77912000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63552000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77612000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73272000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77912000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77612000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77612000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38420000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76344000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38500000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "59908000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76344000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69116000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76344000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60152000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72700000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69032000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81404000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73640000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58544000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "80808000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81404000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70512000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81404000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "80808000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38148000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "80808000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "82288000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "82288000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64548000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "39476000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "82288000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64592000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69148000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69704000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76828000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37936000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64292000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76828000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77384000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77384000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76828000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68380000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77384000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77084000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "29972000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77084000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62024000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77084000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65608000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "59960000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64400000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "30144000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "75328000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78400000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73104000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "42152000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77192000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63612000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78400000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72308000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77192000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78400000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76404000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38232000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77192000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38496000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76404000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "59600000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68808000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "76404000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60444000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70156000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37336000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72896000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73740000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58964000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81088000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81088000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81420000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70140000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "74748000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81088000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81420000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81420000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "38236000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81916000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64976000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37544000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81916000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70088000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64300000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81916000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77768000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68908000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "37728000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77092000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77768000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64216000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77092000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69328000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77768000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77092000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77008000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77008000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57432000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "29928000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "77008000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "60264000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "78564000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "86756000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64360000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "29736000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "73568000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58620000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91868000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "64596000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77152000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "91868000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77152000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "91868000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72276000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38292000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76372000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77152000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38560000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60292000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76372000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "59900000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69668000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76372000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74276000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69796000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29800000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81956000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73892000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58852000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81956000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "64716000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73412000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81956000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "39296000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77508000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "39072000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77508000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61336000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77508000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "70032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61228000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "70092000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "39112000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74640000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61916000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74188000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74640000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74640000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74188000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69816000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "30268000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74188000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73904000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60940000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73904000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "39660000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "64524000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73904000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65336000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29700000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73732000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77316000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "37968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69424000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "64100000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77316000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78128000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78128000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77316000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68764000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78128000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38852000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76948000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60852000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29880000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76948000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69548000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "61008000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76948000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74156000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65104000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81324000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60516000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73288000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77384000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65636000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81324000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77384000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73820000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81324000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77916000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "39120000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77384000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65440000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38488000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77916000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77916000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60804000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69024000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69608000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38000000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74208000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60412000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74208000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69216000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73824000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "74208000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "30016000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73824000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60284000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29760000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73824000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "64236000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60740000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73452000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65348000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38576000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73028000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77540000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "64224000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77540000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68832000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77540000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38544000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76512000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60720000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38160000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76512000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "59412000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "76512000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68912000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "63508000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73520000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "29728000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "59428000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81704000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "63508000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65036000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "64688000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81704000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "81704000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73020000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65036000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77116000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38624000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65036000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77116000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38808000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "65484000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "60808000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "77116000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78276000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38076000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69504000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "38076000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78276000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69504000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "30508000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "30232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "78276000" - } - ] - }, - { - "name": "AVG_LOAD_PERCENT", - "metrics": [ - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46228000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "45888000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "67332000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61472000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46108000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "55264000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "82048000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "74556000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "90048000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "87460000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96488000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "94444000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101072000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "91352000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "94444000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99784000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101072000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "94444000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99784000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101072000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99784000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "94444000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101072000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "53604000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46304000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "47712000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83560000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83980000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "57844000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "87496000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "87796000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "66780000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95500000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "91920000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96020000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95748000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95500000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96020000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95748000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96020000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95500000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "54184000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95748000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "53092000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64284000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "57100000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "63340000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "84564000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "87768000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "87948000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "91732000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "92340000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "89400000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100220000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96956000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100004000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96956000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100004000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46080000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58232000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96956000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "44628000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "70976000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58580000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "63456000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "88796000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85244000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "79900000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83008000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "88704000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "93140000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83008000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101020000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83008000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101020000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46084000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "72148000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58568000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "71744000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83648000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "84304000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "72192000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "88592000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "93416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "92620000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96484000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "92904000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100876000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96484000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100876000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46276000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58320000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46040000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "71040000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "79576000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "70000000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85364000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "84508000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83156000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "89256000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97728000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92236000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96316000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97728000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97728000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96316000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "54196000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58032000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46128000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "80504000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "71896000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84124000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83052000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88596000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83244000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "93072000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96588000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96588000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96588000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "51652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "54820000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66056000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84736000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53384000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87540000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83856000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96336000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87688000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91584000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100408000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96336000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96336000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100408000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46108000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55076000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66348000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50716000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68200000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63516000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88804000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84480000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83296000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92212000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96480000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83672000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100768000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100768000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96480000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85428000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96480000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45972000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85428000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64028000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52576000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55676000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83984000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62636000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84396000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91952000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87812000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "89028000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95980000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92160000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95980000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99528000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95980000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99528000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55100000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "47596000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45920000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62556000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83764000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83328000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87544000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82468000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88620000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92312000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95304000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95304000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95304000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53732000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50556000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82580000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63192000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "54304000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83620000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83152000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87060000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88684000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95212000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83692000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95212000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85916000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85916000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95212000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56116000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46404000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52232000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "70032000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63768000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84440000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88236000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83696000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92232000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87524000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92712000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96236000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100612000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96436000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96436000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100612000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96236000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45852000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96236000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46176000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61524000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52760000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62160000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83552000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64164000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87676000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91800000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91904000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94828000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91964000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99544000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94828000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94828000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46060000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99544000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49280000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45868000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55128000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63540000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82800000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84140000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87712000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88672000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91852000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96400000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95644000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95888000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96400000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95644000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95888000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95644000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96400000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52668000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50924000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95888000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62920000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83996000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61700000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87672000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82012000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87132000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91884000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91876000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96724000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96724000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95292000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99208000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96724000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99208000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95292000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46704000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95292000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46484000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61756000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61780000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87124000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81984000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87392000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91348000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91972000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94528000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99036000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99036000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99036000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "45564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46124000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61456000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60836000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46020000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83196000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81972000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61344000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91360000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90984000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87432000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94088000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90596000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94088000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99436000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94088000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99436000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99436000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94088000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46212000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46508000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "45888000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66480000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "82432000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61208000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86912000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81496000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "89916000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94720000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99196000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94720000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94720000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99196000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94720000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99196000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46444000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46324000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61568000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46368000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66176000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86620000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "82452000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "85920000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90660000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95120000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98856000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94880000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94880000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98856000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94880000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98856000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46144000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94880000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46172000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60988000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46460000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61524000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "82604000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66512000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "82876000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83148000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86684000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91116000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "84576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95412000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98560000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "84576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "84576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98560000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "45932000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98560000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60788000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60972000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46120000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "82256000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81972000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61604000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87488000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91408000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90652000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90648000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95476000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94716000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99316000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95476000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94716000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99316000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95476000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94716000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94716000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95476000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99316000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99316000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46048000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46168000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52860000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81580000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65912000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86376000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "85764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62336000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94392000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94132000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81068000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98984000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83732000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97900000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98984000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83732000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97900000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97900000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98984000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83732000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46424000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46192000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83732000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53832000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61144000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46520000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86900000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66196000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86332000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87088000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91052000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91492000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98888000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94636000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98908000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98888000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98908000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98888000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98908000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "45888000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46052000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61880000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46436000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53644000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83224000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53556000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66288000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91172000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86844000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90928000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95448000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90840000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95268000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99820000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95448000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95268000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95268000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95448000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99820000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95268000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95448000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99820000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46104000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46168000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53028000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65640000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52868000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66668000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "65708000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91236000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90716000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94956000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94956000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94956000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94956000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46248000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46068000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45880000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "81572000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56948000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66464000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86836000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73576000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94300000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56780000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46092000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "54880000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87656000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87372000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67248000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92096000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92132000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95732000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45864000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "52504000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46132000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "54068000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67312000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "65748000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86488000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90800000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94640000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90904000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98252000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94640000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98252000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94640000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98252000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94640000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47644000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45636000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46484000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62264000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82384000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66492000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86216000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79088000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95116000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82960000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82804000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98792000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82804000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98792000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82804000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98792000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46408000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82804000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47224000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "54316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "61716000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82292000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "83136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87600000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91408000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "83528000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87400000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85292000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95624000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95624000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85292000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85292000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95624000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46188000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95624000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46028000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46352000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58336000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58344000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74892000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75292000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78700000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92276000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91708000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99764000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95060000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99368000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99764000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99368000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "59596000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "81080000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99368000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "53380000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "89764000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99368000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "53160000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "93696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63588000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87520000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "93696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "83852000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92204000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "93696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "88140000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100008000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58496000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96616000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96616000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "84392000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100008000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "88276000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "53552000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63224000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97228000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62264000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87796000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97228000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97228000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92000000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92032000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94824000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58096000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99540000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99540000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "84184000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94824000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94824000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "88916000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99540000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "50560000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46108000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96404000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60476000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82960000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96404000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87948000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67576000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91808000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95600000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58544000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63616000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95872000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95600000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95600000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95872000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95872000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84220000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95600000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45880000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84220000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45884000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63372000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "66596000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46096000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62988000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82852000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87364000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "91420000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94968000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84096000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92012000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94968000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95200000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94968000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96364000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95200000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94968000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95200000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96364000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50060000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96364000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45784000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "61260000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46028000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83400000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82224000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87788000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62852000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "91128000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82484000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95764000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92000000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94464000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95764000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95764000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94464000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45860000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94464000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47548000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45740000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63652000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76276000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46104000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87892000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84580000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71824000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96660000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92040000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93104000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96660000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96584000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96584000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96468000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46200000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45912000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "57120000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96468000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "54260000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73832000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46440000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "90416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71464000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81664000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94744000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83852000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92948000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94744000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94744000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45872000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "51436000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62628000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "79424000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58404000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65984000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88976000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71672000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82568000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83068000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83896000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83068000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100356000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93028000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58124000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100356000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72144000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100356000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88840000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100356000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93280000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "57536000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84072000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88840000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84256000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96508000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "89040000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96508000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58208000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84408000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96508000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88952000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45972000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72572000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46020000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72096000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84496000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93212000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83316000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46360000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92512000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96352000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71544000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96352000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84076000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96352000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92904000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58324000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "70164000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "54716000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88040000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65256000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88696000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92828000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92828000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58784000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92028000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92828000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100268000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72552000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45988000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88528000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100268000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58236000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45804000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58468000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84224000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88448000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88684000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96156000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96156000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "85128000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88816000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58228000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96156000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72296000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72992000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88604000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84688000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93216000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100920000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93528000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100920000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72668000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83992000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100920000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92700000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57852000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84452000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58348000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88864000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84572000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57964000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96632000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96632000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71336000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88996000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96632000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "45848000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46312000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93668000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70588000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "66036000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83532000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93668000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "91940000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93668000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92248000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46280000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96064000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96064000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72400000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96128000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96128000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96064000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83744000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58160000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96128000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58324000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "68620000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70312000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88660000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92220000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88440000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57832000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "91948000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101196000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101196000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100360000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "89192000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100360000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101196000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92536000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100360000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100648000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84124000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58760000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100648000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84084000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88700000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88732000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100648000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96976000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58496000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84720000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96976000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "45844000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96976000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88544000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97040000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "45988000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "68168000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97040000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83764000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69144000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92196000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97040000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83528000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46004000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96188000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92252000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71216000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96188000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96148000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96188000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96148000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83876000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96148000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58116000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92668000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84016000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56200000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "95984000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "63496000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "95984000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88204000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88340000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "95984000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96832000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96832000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58660000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96832000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72260000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88944000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46080000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69688000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84496000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72464000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92600000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84144000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96316000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92988000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "59776000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96316000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96316000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "85020000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88548000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57988000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "54028000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71996000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64672000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88980000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "89004000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93320000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57896000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101100000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92420000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101100000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99836000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71940000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88760000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99836000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57140000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93024000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99836000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83508000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58076000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88152000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84248000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96272000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88708000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58444000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96272000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96272000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83844000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71892000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46384000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70472000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "85180000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84536000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93296000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92868000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45784000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72160000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84092000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93196000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58404000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84584000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "57912000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87848000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "70556000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88708000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "57736000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93724000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71532000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93724000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93724000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88448000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46140000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72180000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46332000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62896000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84724000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83140000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92784000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91924000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58704000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83740000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88776000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "59536000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58008000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71524000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88736000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93596000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89180000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "53160000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93400000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64380000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100912000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100912000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87920000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100912000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58196000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92164000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58192000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84708000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99756000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99756000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "85176000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89544000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97464000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88852000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99756000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97464000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58232000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97464000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83872000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46428000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89080000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45916000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69020000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84896000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92596000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84228000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91984000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68876000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96160000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84960000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96160000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96160000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93104000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58648000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72052000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88784000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88280000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "57112000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93304000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93304000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68300000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88616000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46044000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93304000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91860000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45924000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58384000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "57820000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100828000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83984000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88312000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100828000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100828000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "56392000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84004000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88508000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58216000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96560000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72400000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58320000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96560000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89088000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96560000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93076000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88732000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92844000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45920000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68256000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100676000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100676000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83936000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58260000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100676000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91736000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84172000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "57856000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88108000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71512000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96668000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88156000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58156000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96668000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96668000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46016000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45848000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76408000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84880000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72376000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84256000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93372000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92776000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97420000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71748000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97420000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96396000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97420000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96396000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92756000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58704000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96396000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58372000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72340000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88916000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72280000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93092000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89120000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93092000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93492000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72428000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93092000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101172000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46100000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88868000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101172000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93376000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101172000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59492000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100568000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59072000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85032000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89764000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100568000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88944000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100568000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98108000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98108000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84780000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98108000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "45884000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72308000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46300000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72276000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85248000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93380000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85008000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46156000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93580000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72104000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97828000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97828000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58744000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97828000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84624000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97352000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97352000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88516000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84900000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97352000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88196000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58852000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72424000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88936000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46072000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71488000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46188000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83760000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72164000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92916000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83736000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "45900000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74352000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96212000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96212000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92928000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59084000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96212000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58936000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97444000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72652000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97444000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71156000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88932000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97444000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88992000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "49244000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92980000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62728000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87896000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46076000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46440000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "91924000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47316000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46076000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47316000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46260000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53376000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "66996000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83944000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "86884000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "50616000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96064000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87452000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99648000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96276000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63316000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96276000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99648000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87480000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92200000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "45932000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96276000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99596000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62564000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "45940000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99596000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65072000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "82992000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83784000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "91296000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92072000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61408000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "82696000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "91580000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52600000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95456000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58576000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95456000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63140000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87708000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95456000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92048000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46312000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89044000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99492000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71848000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92936000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99492000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84828000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92888000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99492000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58860000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85076000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58292000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84844000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89724000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88624000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97396000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58448000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97396000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83792000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89008000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97396000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "45872000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46184000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "71744000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74536000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84152000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92852000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46172000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "85420000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93504000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72152000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97588000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84732000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93216000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97588000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97588000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59088000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97300000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58700000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97300000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74724000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89000000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97300000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93212000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89244000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58428000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93212000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72100000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93212000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88244000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92816000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46256000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92816000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46244000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72120000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92816000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58448000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84496000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46008000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84568000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93200000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59676000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89020000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97240000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96920000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97240000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88400000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96920000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97240000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97556000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96920000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59028000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97556000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58536000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72324000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97556000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89068000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72384000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93544000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89196000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59344000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93428000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "70980000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101024000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83408000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83408000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "45696000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101024000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101024000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84724000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58344000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "57936000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84724000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "85268000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46208000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88532000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "85176000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88524000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58564000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97220000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84708000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88232000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97220000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97220000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46188000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46344000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "68964000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84852000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "85476000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93008000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72596000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97016000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93320000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97016000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84148000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97016000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92684000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "57912000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97160000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58360000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72164000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97160000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72284000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97160000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88956000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93372000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88776000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58056000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92648000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93372000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "71996000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93372000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92648000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92648000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93292000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93292000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72240000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46160000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93292000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83804000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59448000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46028000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84124000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93252000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96404000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58476000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88336000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96404000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83892000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88828000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96404000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58712000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46208000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72564000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88944000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72544000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46380000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92596000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84044000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100672000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93380000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96652000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100672000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84048000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "91984000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100672000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96652000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96732000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58232000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96652000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83544000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96732000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "57184000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84636000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88656000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96732000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88944000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "57528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83632000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96472000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88516000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96472000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96472000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46052000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64080000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84040000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92480000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46152000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95580000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92456000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68396000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84100000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95580000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "91940000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95580000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58004000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71800000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58540000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72180000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88588000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89616000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "57792000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92640000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92640000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93144000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100312000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92640000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92640000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100312000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93332000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "57716000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100312000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100804000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100804000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58500000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84176000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100804000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84576000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88652000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58016000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95956000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88792000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95956000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84532000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88980000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95956000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46448000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46064000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69892000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72356000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83992000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "91856000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84380000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93412000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72512000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84284000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93124000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58352000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71956000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72192000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88796000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88540000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "57768000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92984000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88676000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92984000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92984000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46324000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92108000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "59132000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45892000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100896000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84472000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58276000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100896000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46424000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88680000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58396000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88368000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97708000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84188000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97708000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96040000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88380000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97708000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96040000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96040000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58024000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96280000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58740000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72356000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96280000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88716000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72168000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96280000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88628000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45868000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93108000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72484000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92896000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100852000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100852000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100516000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84588000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100516000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93152000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100852000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "59528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100516000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "85176000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58636000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84972000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89188000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58144000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88728000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96776000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96776000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84516000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97780000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97780000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96776000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89064000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97780000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46004000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46300000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71904000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72400000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84988000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83984000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45920000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71312000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83456000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92672000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96168000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58884000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72592000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96168000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58492000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96168000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89236000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68108000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89340000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93680000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58560000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93680000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72136000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93680000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89036000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92956000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46428000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46020000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100784000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "59440000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100784000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58852000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "85004000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89620000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45956000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84548000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97852000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "57632000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89076000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97852000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84176000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89136000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97852000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96616000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46272000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96616000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46096000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72464000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72336000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96616000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "85312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46232000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84776000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93600000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97344000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72064000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97344000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84936000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92924000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97344000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58348000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97236000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84684000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97236000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58220000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97236000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88688000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71572000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "57760000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88652000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "68436000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89244000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45636000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92072000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92072000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46168000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72392000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "83820000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92072000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70596000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93292000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46148000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84036000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56648000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96492000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84108000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96492000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88680000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96492000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58112000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "53848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72044000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64120000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87960000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "54056000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93532000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65072000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100792000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92076000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100792000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99340000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88912000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100792000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99340000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92296000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99340000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58152000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56036000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84208000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88904000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84272000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "55564000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88504000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "83236000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96068000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87824000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96068000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96068000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46012000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71444000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71980000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84208000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93292000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70524000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92924000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96716000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "79656000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96716000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "83272000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96716000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84288000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84288000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72436000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "57876000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72176000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84288000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89016000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88656000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58400000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93004000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93004000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93268000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72012000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93004000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89300000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100620000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93004000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93108000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100620000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58488000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100928000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100620000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58296000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100928000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "85104000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100928000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84764000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88268000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "54084000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89044000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97580000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97580000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96908000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84404000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96908000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97580000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87808000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46360000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96908000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46280000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75684000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84744000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72380000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84788000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46548000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92668000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71748000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97156000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84132000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97156000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97156000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93044000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58284000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96536000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96536000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58476000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70480000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96536000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88512000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "57960000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88788000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69084000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88260000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46148000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91860000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46344000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91860000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71600000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84312000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91860000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58468000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84204000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92628000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "45828000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43008000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88124000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68380000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87208000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "49296000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95792000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46204000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "61860000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95792000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95792000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63596000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87240000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46316000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "90624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83156000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91960000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62936000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "82528000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95676000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95676000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91652000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95676000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95420000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53848000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53016000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95420000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64132000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95420000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62872000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87720000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92360000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54112000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65756000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87960000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92148000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99816000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54936000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84164000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53628000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99816000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99816000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88740000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84608000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88096000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51640000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "82888000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97248000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97248000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88060000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46036000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97248000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "45944000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62116000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "82992000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72040000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46356000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93284000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96136000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71936000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83672000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96136000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93168000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96136000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "57976000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70176000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88792000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71860000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88512000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53680000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62352000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92968000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87596000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100576000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92404000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100576000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "52032000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100576000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "81852000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "55252000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93708000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84464000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102352000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51440000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88992000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83260000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102352000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87616000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102352000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "45856000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95684000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62752000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95684000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46216000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95684000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72408000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83496000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46036000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92128000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84692000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70148000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93228000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97564000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83468000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97564000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93192000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58948000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97564000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96100000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "57976000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71972000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96100000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96100000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72244000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93568000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89108000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "57484000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68992000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93000000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100924000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89096000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100924000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "91728000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100924000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58000000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57536000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84084000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88892000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84312000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88796000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58464000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84608000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96708000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89208000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96708000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45864000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96708000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71368000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45896000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83752000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72172000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84272000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92304000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46348000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71592000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93388000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96248000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93736000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96248000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96248000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58100000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65852000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87848000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88536000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92144000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68888000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100088000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93052000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100276000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100088000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89444000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92256000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100088000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100276000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101024000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57992000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100276000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84360000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101024000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "59708000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89076000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46040000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "85856000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89024000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96292000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58632000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96292000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83792000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96292000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88656000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96752000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45684000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96752000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71904000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45996000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96752000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84732000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72104000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92652000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46360000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84828000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70628000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92788000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83212000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93072000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58396000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72204000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58968000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88756000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75128000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88872000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57840000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71856000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88772000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93396000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101252000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "49660000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101252000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58324000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82228000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84296000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87544000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101252000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95864000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88920000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53568000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83708000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95864000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88564000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95864000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45884000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "63424000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46008000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "63196000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84244000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46064000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "91860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83636000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64488000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "91784000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83920000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92140000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58424000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72540000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "55316000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88712000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "66676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53600000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62192000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100908000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87856000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92004000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100908000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57588000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100908000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99520000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84112000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57924000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99520000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99520000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84208000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88812000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57864000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88608000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96800000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83780000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96800000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88648000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96800000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46196000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46376000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69224000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70972000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92340000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83656000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92980000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96200000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83764000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92016000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96200000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96200000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58284000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68720000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58300000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72240000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88120000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57048000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88476000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92132000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68008000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93112000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92132000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88492000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93112000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92132000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92132000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92292000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93112000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100788000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93112000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58700000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57816000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84012000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100788000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100788000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88912000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "80188000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83272000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53956000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84832000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "89004000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84832000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46084000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96748000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84832000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46256000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96748000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "71676000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84684000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96748000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93644000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "45936000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83932000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92680000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63184000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "82652000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92492000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "56240000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58440000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "66932000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88292000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64000000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91984000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "52664000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88272000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100548000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92136000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "67000000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99936000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100548000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88476000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100548000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99936000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92080000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "56936000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99936000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100128000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100128000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83764000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57040000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100128000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88696000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88592000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58136000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84472000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96528000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96528000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87940000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96528000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46228000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46304000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "71944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70288000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84012000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "45564000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92844000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96264000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93044000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "61972000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96220000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "82896000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96264000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91268000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96220000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96264000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95660000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57104000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96220000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "54500000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95660000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68996000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88544000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95660000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65240000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88144000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92464000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92308000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62424000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101120000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101120000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100292000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88140000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91952000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101120000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100292000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100292000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "56336000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84488000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "49456000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88712000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83080000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87736000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53244000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95708000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83972000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95708000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88340000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95708000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46104000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68788000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "45724000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70696000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81704000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98232000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83928000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "45960000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93280000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62608000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102196000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83628000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102196000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102196000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "91688000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "57688000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58348000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72020000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69864000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88816000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93048000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "89068000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101040000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93492000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62584000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101040000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83868000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92640000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101040000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58484000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96516000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58328000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96516000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72160000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96516000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88736000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71976000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88560000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58620000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "70572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93132000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93132000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "89232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45972000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93132000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92732000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46116000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72072000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92732000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "59348000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83452000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92732000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84456000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46160000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92564000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58160000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88984000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83764000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97528000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97528000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88180000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97528000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "57792000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72508000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46064000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88816000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68156000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46000000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93440000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84988000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73316000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92724000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84348000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92848000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97380000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58824000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84428000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58360000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97380000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97380000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71972000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88368000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96984000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88400000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "56572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96984000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92904000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "63576000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92904000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88028000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96984000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92472000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92904000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46096000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92472000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92472000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83504000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71756000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92700000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46048000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84412000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58616000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92384000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84208000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96964000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88860000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96964000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58052000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96964000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71876000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "70724000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88752000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92896000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45868000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62840000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83520000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84484000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84212000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92264000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84484000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95940000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58180000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84484000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95940000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "57948000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "85288000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72340000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95940000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "89040000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97444000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "55744000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88560000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "55744000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97444000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88560000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45924000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45880000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97444000" - } - ] - }, - { - "name": "AGG_NETWORK_BYTES", - "metrics": [ - { - "time": "1970-01-18T05:54:08+00:00", - "value": "589204000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "617368000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "602904000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588556000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "603744000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "623948000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637848000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633420000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "627840000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "646012000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637516000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "650620000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "631936000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637516000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "640128000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "650620000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637516000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "640128000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "650620000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "640128000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637516000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "650620000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "600284000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "589968000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "624484000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625372000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "603436000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "628956000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629092000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "607676000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "632332000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636940000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636940000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "600580000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636940000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "621060000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "599064000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "619596000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625572000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "628484000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629252000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633348000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633092000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629668000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "640260000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641028000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641028000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588372000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "600364000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "599376000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "620844000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "600120000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "604252000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629892000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625692000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "621148000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625244000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629276000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633988000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625244000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637980000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641668000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625244000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637980000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641668000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637980000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588424000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "620684000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "600252000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "620728000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "624648000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "624268000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "621008000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629552000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633688000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633352000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636936000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636760000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "634160000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636936000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641328000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636760000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636936000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641328000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588860000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "599340000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "620960000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "621472000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "620752000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625808000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "624848000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "624544000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638096000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "632528000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626080000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626080000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638096000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638096000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626080000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599196000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599604000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "589440000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "620768000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "621288000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625296000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623840000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629904000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624872000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624864000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633576000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637584000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637584000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624864000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624864000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637584000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598984000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599532000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "621152000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626592000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599408000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "630176000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629596000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625440000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638368000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629024000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633180000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637216000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638368000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638368000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637216000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637216000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598972000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619736000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619600000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "620316000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629756000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625064000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633340000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624096000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633256000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637352000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624096000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641532000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641532000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637352000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626144000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637352000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626144000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619988000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598220000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599132000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624800000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619544000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625336000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633040000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628468000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629944000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637136000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633076000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637136000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640244000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637136000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640244000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598912000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598772000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619488000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625104000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624368000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628976000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623460000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629712000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "632676000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599480000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598496000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623592000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619960000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625268000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624344000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628200000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629364000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "635880000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624344000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "635880000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637044000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637044000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "635880000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599520000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588948000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637044000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598432000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "620696000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625280000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629640000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624812000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633224000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628396000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633472000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637100000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637568000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637568000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637100000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637100000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "603340000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619636000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623952000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624412000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619724000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "627916000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633168000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "632092000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636240000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "632524000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636700000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640204000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636240000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636700000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636240000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588848000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640204000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598960000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "589212000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599196000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624900000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619936000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623352000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625660000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629508000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633340000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637188000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636312000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637948000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637188000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636312000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637948000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636312000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637188000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599496000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598264000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637948000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "620456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625376000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619568000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628960000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623600000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628648000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633052000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "632744000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636636000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640424000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640424000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636636000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588952000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636636000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619240000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "602900000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627800000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "623168000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "628696000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631896000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632792000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627776000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635456000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640472000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639552000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640472000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639552000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640472000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588484000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639552000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602768000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602260000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "624400000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "622784000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602948000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632592000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632000000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "628636000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635072000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631708000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635072000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640412000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635072000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640412000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640412000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635072000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "607092000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "622744000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602256000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627864000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627060000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "622368000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "630560000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635408000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635544000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "634656000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635544000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635544000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "634656000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635544000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "634656000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "634656000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588488000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602760000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "589180000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "607172000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "626988000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "623488000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627140000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631084000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627072000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635844000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639428000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "638764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635776000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "638764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635776000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639428000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635776000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "638764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639428000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635776000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602568000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "603848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "624500000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "608116000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "623692000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "625012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627572000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631884000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "626548000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636276000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639860000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "626548000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "626548000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639860000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639860000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602364000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602272000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "623540000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "623500000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602932000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "628236000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632092000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631732000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631820000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636188000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635828000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636188000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635828000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636188000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635828000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635828000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636188000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "589148000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602940000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "622388000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "606760000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627508000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627240000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "604300000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "634920000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635188000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "622220000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "625804000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639284000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "625804000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639284000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639284000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "625804000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "625804000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "603288000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "603076000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "606556000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627412000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632020000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632140000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639700000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635704000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639800000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639700000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639800000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639700000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639800000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588496000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588596000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "619216000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602632000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "624300000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602876000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "607372000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632212000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627912000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636588000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632384000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636588000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636588000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636588000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588944000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602884000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "606524000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "607624000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "607136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632468000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "627108000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636564000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "631452000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "635420000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636564000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636060000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "635420000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636060000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636564000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "635420000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636060000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636564000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "635420000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588528000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623000000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "602928000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "607888000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "627096000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628368000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "615056000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "630928000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636048000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634776000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636048000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639384000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636048000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639384000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636048000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639384000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588760000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603384000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603208000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628552000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628076000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "608304000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632684000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "627760000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "633160000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636084000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640328000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640180000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640328000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640180000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640328000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640180000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "602460000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588500000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603556000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "608580000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "607136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "602504000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "631712000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "627212000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632132000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634784000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "631308000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "638988000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634784000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634784000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "638988000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "638988000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634784000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "597948000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "589092000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "619816000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623816000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "607920000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "627376000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628424000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "619816000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636104000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636080000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623400000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623912000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639664000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636104000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623912000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639664000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636104000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623912000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639664000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636104000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588972000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623912000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588452000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588940000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "602772000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623244000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "624860000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628144000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "631728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "624268000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "629468000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639920000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "626316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639920000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "626316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639920000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "626316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588928000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588404000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "616832000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628532000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "616512000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "620608000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "633140000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632704000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637312000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640308000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636684000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637312000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640780000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640308000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640780000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637312000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "601552000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "622032000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640780000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637312000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "630380000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640780000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "598956000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634476000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "620200000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628664000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634476000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "624840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632760000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634476000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628936000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640440000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637128000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637128000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "625608000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640440000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "629192000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "599472000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "620008000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637896000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "620172000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623928000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "629036000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637896000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637896000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "633644000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632632000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636216000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "599620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640812000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640812000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "624764000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636216000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636216000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "629372000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640812000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "599060000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588492000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637052000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603348000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623964000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637052000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588500000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628572000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "624616000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632296000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636252000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "605968000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "606432000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636904000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636252000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "623328000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636252000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636904000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636904000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636252000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "589236000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "619524000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "607804000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588436000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620208000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624352000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "628284000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "632032000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636180000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633652000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636180000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636640000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636180000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636640000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636180000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636640000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "598588000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "602376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588928000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "623592000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "623408000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "628404000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "619652000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "632112000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "623792000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633008000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635184000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636080000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635184000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636080000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635184000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "599724000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636080000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588888000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620124000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625108000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588548000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "628692000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "626140000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "621392000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633820000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625488000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "634192000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637776000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588688000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "602204000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637776000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "603884000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "614804000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588768000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "630676000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "604396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620864000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "622828000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624664000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633584000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637168000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637168000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637168000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "619732000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620128000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600116000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629612000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620904000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "623712000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624224000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633196000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625048000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624224000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "634264000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600112000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637336000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620764000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637336000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637336000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629740000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600164000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637336000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "634348000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "599460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625696000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641516000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641516000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "630304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625496000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637984000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641516000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "630104000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637784000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637984000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600028000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637784000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624928000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637984000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637784000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629536000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "589420000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "621680000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620812000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625264000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633968000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624596000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633300000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636884000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620724000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636884000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624820000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636884000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633792000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600036000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636596000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620140000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "599696000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629208000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620176000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636596000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629524000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636596000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633816000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633816000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600264000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633108000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633816000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "640788000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "621256000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "640788000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633824000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600248000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588616000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600272000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625016000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633824000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633824000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624992000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629624000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633824000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629088000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600248000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636768000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636768000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625336000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "599796000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636768000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620936000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588492000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637056000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637056000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "622564000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629128000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "626660000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637056000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633736000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640904000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "635364000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640904000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620868000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638436000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624628000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638436000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640904000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638436000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633332000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599684000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636916000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625704000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600308000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636916000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "630312000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636916000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "628952000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637992000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600432000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637992000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637656000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637992000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637656000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621616000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "631116000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637656000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588748000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588440000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "635212000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620616000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620244000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "635212000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624544000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633068000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "635212000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "632872000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588576000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621008000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636968000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636968000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624592000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599596000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636968000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634176000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620968000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620740000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629672000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633256000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629612000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599620000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "632684000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621232000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633520000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600472000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641712000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625580000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600060000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641712000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624564000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "630188000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629828000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641712000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600504000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "626008000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588688000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629592000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588628000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620340000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624948000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620276000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "632628000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624372000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588412000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633272000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620932000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624516000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599376000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633220000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625964000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599520000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621724000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "630572000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629404000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638252000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638252000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634012000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600512000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634012000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638252000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621280000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634012000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629472000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620656000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634080000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634080000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624752000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621476000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633020000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634080000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625060000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "589224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637116000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633764000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "601296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637116000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637116000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625872000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629456000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599644000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638160000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599456000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620972000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620336000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638160000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629464000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629196000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638160000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634072000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599436000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641752000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "632780000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641752000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640460000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620772000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629096000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640460000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588404000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599292000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633192000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640460000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640872000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624572000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600472000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629180000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640872000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625716000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640872000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636860000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "630324000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637492000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636860000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637492000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636860000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625012000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588488000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637492000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629620000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620988000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637300000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588480000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620376000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637300000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625772000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637300000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625472000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633964000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633152000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588500000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637760000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "622284000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625868000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637760000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637760000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634572000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599652000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625664000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600404000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "628736000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620884000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637440000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629244000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599684000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633852000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637440000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637440000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621336000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633852000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633852000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629528000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588840000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620772000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634136000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588440000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634136000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625768000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624420000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634136000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633448000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633124000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "589024000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637732000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600292000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624724000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637732000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637732000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629332000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "601104000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599764000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621220000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620756000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "630100000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634196000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "630028000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "598960000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641876000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634124000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641876000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "619644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641804000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641876000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641804000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "628292000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641804000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600560000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "632900000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600128000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625936000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "640580000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "640580000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "626196000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "630544000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638224000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "630804000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "640580000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638484000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638224000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600212000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638224000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638484000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624952000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "630072000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638484000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588448000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621340000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620308000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625912000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633592000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624916000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "632596000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588920000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621248000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636692000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "626024000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636692000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636692000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633704000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600172000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637800000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637800000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621108000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629812000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634004000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637800000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600172000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634004000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634004000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620652000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629356000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "632940000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588484000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599076000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625820000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629404000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638108000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629296000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638108000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599072000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638108000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624752000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629360000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600248000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637040000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621420000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600028000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637040000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629888000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621420000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637040000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634496000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629612000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634220000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "642176000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588700000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620280000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "642176000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "642176000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625376000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599792000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625136000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599520000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "628720000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621064000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637424000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600124000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634084000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637424000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634084000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625044000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637424000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629652000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588788000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634084000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636820000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620948000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "626032000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636820000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636820000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625572000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634224000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634276000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620712000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600004000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600400000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621144000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629848000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600356000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633944000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621316000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641624000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629508000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641624000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634116000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641624000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600544000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641284000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600972000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "626100000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "630196000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641284000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "626432000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "630016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641284000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600116000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625544000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629688000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588892000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620832000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621580000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625888000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634080000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "626336000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588424000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621132000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638112000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638112000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625740000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600872000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638112000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633420000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625852000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638028000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600128000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638028000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629436000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625700000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638028000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "628772000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600748000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621480000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "630184000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588432000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620836000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634280000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "624932000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620852000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634280000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633636000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634280000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "624436000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636708000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633344000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621496000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636708000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636928000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636708000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "626104000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636928000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633784000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600116000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636928000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600744000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638392000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621108000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638392000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621064000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633732000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638392000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629768000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "598996000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633732000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633864000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633732000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620192000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641544000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641544000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "628384000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633732000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588704000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588652000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "632992000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "589168000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640672000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588704000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640672000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "589168000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "589504000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640672000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "599732000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "608088000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625568000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640672000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "627544000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636616000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629152000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640200000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637344000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620236000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637344000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640200000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "628656000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633264000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588968000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637344000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640944000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "603308000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640944000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620276000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "624120000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625472000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588460000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "631800000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636408000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633152000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "603216000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "623460000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636408000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636408000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "632164000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600096000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "635748000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "635748000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620576000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "628920000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "635748000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621372000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633528000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588480000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "630184000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641208000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621552000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634280000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641208000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "626288000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633968000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641208000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638064000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600056000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625972000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600160000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638064000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638064000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "627076000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "630068000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630660000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600624000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "639364000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624688000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629296000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "639364000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "639364000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588412000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621356000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621548000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624940000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633644000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588592000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "626156000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636716000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634348000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621380000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636716000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625988000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636716000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600228000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638276000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600588000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621652000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638276000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620556000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629844000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638276000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633940000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630364000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600184000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633940000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620664000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634972000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633940000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634972000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633788000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634972000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633788000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588520000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620688000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633788000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600400000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588592000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625688000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633440000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600936000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630296000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638048000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "626024000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638048000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638048000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638312000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "601140000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638312000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600364000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621380000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638312000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629572000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620844000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630348000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600640000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "641860000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620764000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "642124000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "641860000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624516000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624516000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "589540000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "642124000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "642124000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625540000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600808000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600204000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625540000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "627344000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630928000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "626304000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629888000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600036000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638592000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625876000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629460000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638592000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638592000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638164000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "589112000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638164000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "622176000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "626272000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638164000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621568000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "626788000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634464000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621032000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638560000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634468000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638560000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638564000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625640000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638564000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638560000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633832000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "599672000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638564000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600208000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621008000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621732000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629200000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633956000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629924000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600284000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634020000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633956000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621276000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633956000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634020000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629828000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634020000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588500000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621784000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588596000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625880000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600520000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625540000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634584000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638168000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629124000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638168000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624624000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637828000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629232000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637828000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638168000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600356000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637828000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "589348000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620836000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630032000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "622044000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634128000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625628000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620172000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "641808000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634332000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "641808000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625000000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "632680000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "641808000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636776000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600168000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624604000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636776000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "599696000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625940000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629212000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636776000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630548000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636892000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "599544000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625484000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636892000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637716000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630092000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636892000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637716000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637716000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620964000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625748000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "624760000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633428000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588672000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "632440000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620576000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "624672000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "632864000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600320000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621312000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600120000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621112000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629996000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630104000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600412000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621764000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634200000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634340000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600320000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600200000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625220000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625956000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629828000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600192000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629540000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625728000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630336000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638016000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "589036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620796000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638016000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638016000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621540000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588588000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "632924000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625468000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634172000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621164000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "624748000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633964000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600380000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621476000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600264000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621636000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629156000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629828000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633764000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600260000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620228000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633764000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633764000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "632952000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600756000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641656000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625920000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600172000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641656000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625172000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629504000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629268000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625424000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636948000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630032000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636948000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636948000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637200000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621824000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637200000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621888000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637200000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629568000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588596000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634624000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620980000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634176000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642304000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642304000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641344000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625588000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641344000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633780000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642304000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "601272000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641344000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625848000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600448000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "626836000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629944000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630420000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625660000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638612000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638612000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629756000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638612000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588696000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588396000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620624000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621368000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "624952000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620904000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634168000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636792000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636792000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "624620000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633324000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636792000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600344000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621644000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600272000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630416000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620752000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629456000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634512000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600396000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633040000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634512000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621388000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633040000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634512000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629776000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633872000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633040000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588764000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641552000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600680000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641552000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600468000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625888000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "630496000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625928000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599484000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "630536000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625484000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "630092000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588468000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588572000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620612000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "622572000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626036000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "627180000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621532000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634860000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638956000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626140000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638956000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633820000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638956000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600292000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626084000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600504000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629668000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620984000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599744000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629488000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620224000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634096000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634096000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629296000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634096000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "632880000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "632880000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588464000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621876000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "624948000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "632880000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621648000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634164000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588900000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625232000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599868000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633424000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629548000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600696000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621688000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "630976000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620708000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "628900000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599520000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "635072000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620152000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "642752000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "632996000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "642752000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640676000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629060000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "642752000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640676000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "632644000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640676000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599952000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599704000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625040000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629136000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625316000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599964000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629412000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636816000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "624540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637092000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636816000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636816000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "628636000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637092000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588644000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637092000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621048000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620832000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625320000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625572000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "589108000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634024000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621132000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633764000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621644000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599528000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626252000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626252000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621108000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626252000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629676000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634124000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634124000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634284000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621080000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634124000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629932000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634124000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634028000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600164000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641708000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599932000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641708000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625252000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641708000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625576000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "628884000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599524000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "630184000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637864000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625208000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637864000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "628792000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637864000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636984000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636984000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620996000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636984000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625604000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621576000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625968000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588520000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633796000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620136000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637892000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625148000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637892000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637892000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633852000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599664000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "600508000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621372000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621672000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "630076000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599972000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "630376000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620452000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629608000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633192000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588440000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633192000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621100000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625708000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633192000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599992000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625492000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599420000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636972000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629076000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625812000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636972000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "628884000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636972000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599104000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "603224000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620816000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "628240000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "589172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "631824000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624500000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633204000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "619916000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624012000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636276000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636276000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "632716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636276000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636300000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599412000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599712000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636300000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620320000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636300000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629064000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621036000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "628716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633160000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599152000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640840000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633324000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "619904000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640840000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640492000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629252000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640492000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "632836000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640840000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640516000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599560000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640492000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624928000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599652000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640516000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640516000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629024000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625672000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599228000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624212000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "628820000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "619644000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624416000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620784000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "632608000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624368000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621040000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633328000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599680000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "600340000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620252000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629536000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621088000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629792000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634144000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599196000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "619676000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634144000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633888000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629280000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641568000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634144000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633888000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634144000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641568000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641056000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "605104000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641568000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641056000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "639108000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "600056000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "643380000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "626340000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641056000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "652084000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "630436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624244000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "652084000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638116000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "628852000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "652084000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638116000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636532000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638116000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "619752000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636532000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636532000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625312000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588440000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "632992000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "626052000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620456000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637600000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634244000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638340000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637600000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624776000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637600000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638340000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633992000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "600416000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638340000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637064000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620896000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637064000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637064000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621056000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629600000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633696000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "600112000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620592000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633856000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641376000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630388000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641536000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641376000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633460000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641376000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641536000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642164000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641536000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599876000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642164000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "624808000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629416000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642164000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625732000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630340000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600036000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625828000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638020000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629924000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638020000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588520000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637604000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638020000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620984000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637604000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625404000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621156000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637604000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625452000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634108000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "589644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621392000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634156000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637180000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637180000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625908000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637180000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "635124000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600472000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638196000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600612000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620952000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638196000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638196000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629144000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621604000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633240000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621512000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633892000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630628000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634212000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642404000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600328000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625220000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642404000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600772000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629828000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "589244000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "626704000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630288000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600512000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638992000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625400000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638992000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629496000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637176000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588888000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638992000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637176000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620852000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588900000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637176000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625460000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621088000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633140000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588812000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625696000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633580000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "624892000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633596000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636668000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600392000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620872000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636668000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "601004000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629484000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636668000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621484000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599520000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620616000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629372000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633980000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641660000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "598832000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641660000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600368000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "623356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625572000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "628692000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641660000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "635860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630180000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600172000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "624236000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "635860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "628844000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "635860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588744000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636524000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621300000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636524000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636524000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620472000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625908000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588500000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633588000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "624368000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620228000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633072000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637684000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637680000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637684000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "632964000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637680000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637684000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600164000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637680000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621944000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599736000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629624000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621720000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630424000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "598940000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620132000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634008000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642200000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "628644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633252000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642200000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599476000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642200000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640932000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625036000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599800000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640932000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640932000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "624820000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600412000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629428000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637324000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637108000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637324000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625456000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637108000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637324000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629552000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637108000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637232000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588880000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637232000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588736000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619792000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620328000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624400000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637232000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588508000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632592000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625068000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619596000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633260000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636844000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625160000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633352000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636844000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636844000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "600392000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620532000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "600308000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "621144000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629916000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629336000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632988000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619768000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632988000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629892000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632988000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632988000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633476000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641668000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599560000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599360000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625208000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641668000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641668000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629816000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "621136000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637496000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624208000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599672000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625384000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625744000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637496000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629992000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625744000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637496000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625744000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "621048000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625636000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620988000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "634340000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625336000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637924000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633016000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620308000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637924000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624068000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633284000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637924000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636356000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "600024000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620424000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636356000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629128000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636356000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620668000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632712000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "598940000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629044000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633652000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619564000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "640820000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "630524000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "640820000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "634108000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599672000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "640820000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "642300000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "642300000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625064000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "601000000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "642300000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625108000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629160000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629716000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636840000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599460000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624808000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636840000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636840000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "628392000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588660000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "622540000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "626124000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620476000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624916000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588832000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "635340000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "638412000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633620000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "603172000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637204000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624128000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "638412000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632320000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637204000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "638412000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599756000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637204000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "600020000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620620000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629324000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "621464000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "630168000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "598860000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632908000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633752000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619984000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641100000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641100000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641432000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "630152000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "634760000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641100000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641432000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641432000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599760000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641928000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625492000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599068000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641928000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "630100000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624816000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641928000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629424000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599252000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637104000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624732000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637104000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629340000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637104000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "618452000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588616000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620780000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "639080000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "647272000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624876000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588424000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633580000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619640000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "651880000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625112000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "651880000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "651880000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "632792000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599816000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636888000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600084000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "620808000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636888000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "620416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629680000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636888000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634288000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629808000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588488000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633904000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "619872000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641584000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633424000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641584000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600820000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641584000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600596000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621852000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "630044000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621744000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "630104000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600636000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634652000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "622432000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634200000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634652000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634652000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634200000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "630332000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588956000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634200000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633916000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621456000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633916000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600680000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625040000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633916000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625852000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633744000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637328000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599492000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629436000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "624616000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637328000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637328000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629280000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600376000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621368000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588568000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629560000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621524000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634168000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625620000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641336000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633300000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "626152000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641336000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633832000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641336000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600644000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625956000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600012000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621320000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629540000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "630124000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599524000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634220000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "620928000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634220000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629228000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633836000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634220000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588704000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633836000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "620800000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588448000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633836000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "624752000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621256000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625864000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600100000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633544000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "624740000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638152000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629348000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638152000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600068000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638152000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637028000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621236000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599684000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637028000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "619928000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637028000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629428000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "624024000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634036000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "620448000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641716000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "624024000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625048000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625204000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641716000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641716000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625048000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637128000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600148000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625048000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637128000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600332000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "626000000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621324000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637128000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629584000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638288000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599600000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629516000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599600000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638288000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629516000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588692000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638288000" - } - ] - } -] diff --git a/packages/cp-gql-mock-server/src/metric-datasets-2.json b/packages/cp-gql-mock-server/src/metric-datasets-2.json deleted file mode 100644 index c57e0ffe..00000000 --- a/packages/cp-gql-mock-server/src/metric-datasets-2.json +++ /dev/null @@ -1,22996 +0,0 @@ -[ - { - "name": "AVG_LOAD_PERCENT", - "metrics": [ - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46228000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "45888000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "67332000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "61472000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46108000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "55264000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "82048000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "74556000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "90048000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "87460000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96488000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "94444000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101072000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "91352000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "94444000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99784000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101072000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "94444000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99784000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101072000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "99784000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "94444000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101072000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "53604000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46304000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "47712000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83560000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83980000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "57844000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "87496000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "87796000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "66780000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95500000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "91920000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96020000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95748000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95500000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96020000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95748000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96020000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95500000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "54184000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "95748000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "53092000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "64284000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "57100000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "63340000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "84564000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "87768000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "87948000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "91732000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "92340000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "89400000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100220000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96956000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100004000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96956000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100004000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46080000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58232000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96956000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "44628000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "70976000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58580000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "63456000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "88796000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85244000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "79900000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83008000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "88704000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "93140000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83008000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101020000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83008000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "101020000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46084000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "72148000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58568000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "71744000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83648000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "84304000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "72192000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "88592000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "93416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "92620000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96484000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "92904000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100876000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96484000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "100876000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46276000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "58320000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "46040000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "71040000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "79576000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "70000000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "85364000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "84508000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "83156000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "89256000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97728000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92236000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96316000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97728000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "97728000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96316000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "54196000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "58032000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46128000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "80504000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "71896000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84124000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83052000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88596000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83244000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "93072000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96588000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96588000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96588000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "51652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "54820000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66056000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84736000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53384000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87540000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83856000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96336000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87688000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91584000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100408000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96336000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96336000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100408000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46108000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55076000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "66348000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50716000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "68200000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63516000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88804000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84480000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83296000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92212000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96480000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83672000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100768000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100768000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96480000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85428000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96480000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45972000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85428000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64028000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52576000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55676000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83984000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62636000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84396000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91952000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87812000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "89028000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95980000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92160000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95980000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99528000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95980000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99528000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55100000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "47596000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45920000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62556000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83764000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83328000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87544000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82468000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88620000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92312000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95304000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95652000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95304000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95304000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "53732000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50556000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82580000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63192000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "54304000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83620000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83152000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87060000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88684000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95212000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83692000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95212000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85916000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "85916000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95212000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "56116000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46404000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52232000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "70032000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63768000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84440000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88236000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83696000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92232000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87524000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "92712000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96236000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100612000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96436000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96436000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "100612000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96236000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45852000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96236000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46176000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61524000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52760000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62160000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83552000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "64164000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87676000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91800000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91904000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94828000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91964000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99544000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94828000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "94828000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46060000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99544000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "49280000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "45868000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "55128000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "63540000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82800000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "84140000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87712000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "88672000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91852000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96400000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95644000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95888000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96400000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95644000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95888000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95644000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96400000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "52668000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "50924000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95888000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "62920000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "83996000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61700000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87672000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "82012000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "87132000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91884000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "91876000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96724000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96724000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95292000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99208000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "96724000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "99208000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95292000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46704000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "95292000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46484000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61756000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "61780000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87124000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81984000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87392000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91348000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91972000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94528000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99036000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99036000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99036000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "45564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46124000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98664000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61456000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60836000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46020000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83196000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81972000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61344000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91360000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90984000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87432000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94088000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90596000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94088000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99436000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94088000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99436000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99436000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95564000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94088000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46212000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46508000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "45888000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66480000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "82432000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61208000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86912000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81496000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "89916000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94720000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99196000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94720000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94720000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99196000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94720000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99196000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46444000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "93848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46324000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61568000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46368000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66176000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86620000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "82452000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "85920000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90660000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95120000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98856000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94880000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94880000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98856000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94880000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98856000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46144000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94880000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46172000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60988000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46460000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61524000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "82604000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66512000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "82876000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83148000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86684000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91116000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "84576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95412000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98560000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "84576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "84576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98560000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "45932000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98560000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60788000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "60972000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46120000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "82256000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81972000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61604000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87488000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91408000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90652000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90648000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95476000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94716000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99316000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95476000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94716000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99316000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95476000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94716000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94716000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95476000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99316000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99316000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46048000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46168000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52860000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81580000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65912000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86376000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "85764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "62336000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94392000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94132000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "81068000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98984000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83732000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97900000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98984000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83732000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97900000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "97900000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98984000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83732000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46424000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46192000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83732000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53832000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61144000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46520000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86900000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66196000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86332000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "87088000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91052000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91492000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98888000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "94636000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98908000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98888000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98908000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98888000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "98908000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "45888000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46052000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "61880000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46436000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53644000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "83224000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53556000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66288000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "91172000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "86844000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90928000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95448000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "90840000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95268000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99820000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95448000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95268000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95268000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95448000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99820000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95268000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "95448000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "99820000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46104000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "46168000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "53028000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "65640000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "52868000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "66668000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "65708000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91236000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90716000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94956000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94956000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94956000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94956000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46248000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46068000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45880000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "81572000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56948000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66464000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86836000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "73576000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94300000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "56780000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46092000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "54880000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87656000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87372000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67248000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92096000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92132000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95732000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45864000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "52504000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46132000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "54068000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67312000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "65748000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91040000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86488000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90800000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94640000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "90904000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98252000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94640000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98252000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94640000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98252000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94640000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47644000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45636000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46484000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62264000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82384000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "66492000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "86216000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "79088000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95116000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82960000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82804000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98792000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82804000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98792000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82804000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "98792000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46408000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82804000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "47224000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "54316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "61716000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82292000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "83136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87600000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91408000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "83528000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87400000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85292000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95624000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95624000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85292000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "85292000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95624000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46188000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95624000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46028000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46352000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58336000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58344000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "74892000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "75292000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "78700000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92276000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91708000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99764000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95060000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99368000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99764000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99368000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "59596000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "81080000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99368000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "53380000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "89764000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99368000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "53160000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "93696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63588000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87520000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "93696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "83852000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92204000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "93696000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "88140000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100008000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58496000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96616000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96616000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "84392000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "100008000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "45900000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "88276000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "53552000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63224000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97228000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "62264000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87796000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97228000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "97228000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92000000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "92032000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94824000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58096000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99540000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99540000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "84184000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94824000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "94824000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "88916000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "99540000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "50560000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46108000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96404000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "60476000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "82960000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "96404000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "46364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "87948000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "67576000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "91808000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95600000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "58544000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "63616000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95872000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "95600000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95600000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95872000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95872000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84220000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95600000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45880000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84220000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45884000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63372000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "66596000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46096000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62988000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82852000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87364000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "91420000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94968000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84096000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92012000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94968000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95200000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94968000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96364000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95200000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94968000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95200000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96364000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "50060000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96364000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45784000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "61260000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46028000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83400000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82224000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87788000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62852000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "91128000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82484000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95764000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92000000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94464000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95764000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95764000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94464000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45860000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94464000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "47548000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "95084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45740000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63652000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "76276000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46104000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "87892000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84580000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71824000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96660000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92040000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93104000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96660000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96584000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96584000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96468000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46200000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45912000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "57120000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96468000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "54260000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "73832000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46440000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "90416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "63396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71464000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "81664000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94744000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83852000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92948000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94744000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "94744000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45872000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "51436000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "62628000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "79424000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58404000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65984000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88976000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71672000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "82568000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83068000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83896000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83068000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100356000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93028000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58124000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100356000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72144000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100356000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88840000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100356000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93280000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "57536000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84072000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88840000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84256000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96508000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "89040000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96508000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58208000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84408000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96508000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88952000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45972000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72572000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46020000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72096000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84496000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93212000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83316000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46360000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92512000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96352000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "71544000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96352000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84076000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96352000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92904000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58324000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "70164000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "54716000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88040000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "65256000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88696000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92828000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92828000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58784000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92028000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92828000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100268000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72552000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45988000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88528000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "100268000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58236000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "45804000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58468000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84224000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "83728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88448000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88684000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96156000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96156000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "85128000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88816000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "58228000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96156000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72296000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "72992000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "88604000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "84688000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "93216000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100920000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93528000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100920000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72668000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83992000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100920000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92700000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57852000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84452000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58348000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88864000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84572000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57964000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96632000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96632000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71336000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88996000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96632000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "45848000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46312000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93668000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70588000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "66036000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83532000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93668000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "91940000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93668000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92248000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46280000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96064000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96064000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72400000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96128000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96128000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96064000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83744000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58160000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96128000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58324000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "68620000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70312000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88660000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92220000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88440000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57832000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "91948000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101196000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101196000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100360000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "89192000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100360000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101196000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92536000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100360000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100648000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84124000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58760000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100648000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84084000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88700000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88732000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100648000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96976000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58496000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84720000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96976000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "45844000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96976000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88544000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97040000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "45988000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "68168000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97040000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83764000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69144000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92196000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97040000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83528000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46004000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96188000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92252000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71216000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96188000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96148000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96188000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96148000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83876000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96148000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58116000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92668000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84016000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "56200000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "95984000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "63496000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "95984000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88204000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88340000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "95984000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96832000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96832000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58660000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96832000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72260000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88944000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46080000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "69688000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84496000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "72464000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92600000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93120000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84144000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96316000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92988000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "59776000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96316000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96316000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "85020000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88548000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57988000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "54028000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71996000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "64672000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88980000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "89004000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "97500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93320000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57896000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101100000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "92420000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "101100000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99836000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71940000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88760000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99836000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "57140000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93024000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "99836000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83508000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58076000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88152000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84248000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "100500000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96272000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88708000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "58444000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96272000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96272000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "83844000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46448000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "88936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "71892000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "46384000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "70472000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "85180000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "84536000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "93296000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92868000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45784000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72160000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84092000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93196000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58404000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84584000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "57912000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87848000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "70556000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88708000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "57736000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93724000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71532000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93724000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93724000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88448000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46140000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72180000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46332000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "62896000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84724000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83140000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92784000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91924000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58704000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83740000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96680000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88776000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "59536000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58008000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71524000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88736000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93596000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89180000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "53160000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93400000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "64380000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100912000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100912000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87920000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100912000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58196000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92164000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58192000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84708000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99756000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99756000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "85176000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89544000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97464000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88852000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "99756000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97464000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58232000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97464000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83872000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46428000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89080000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96936000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45916000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "69020000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84896000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92596000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84228000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96384000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91984000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68876000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96160000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84960000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96160000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96160000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93104000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58648000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72052000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88784000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88280000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "57112000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93304000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93304000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68300000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88616000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46044000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93304000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91860000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45924000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58384000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "57820000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100828000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83984000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88312000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100828000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100828000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "87904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "56392000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96904000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84004000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88508000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58216000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96560000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72400000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58320000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96560000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "89088000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96560000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93076000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88732000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92844000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45920000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "68256000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100676000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100676000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100972000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83936000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58260000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "100676000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "91736000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84172000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "57856000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88108000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "71512000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96668000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "95992000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88156000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "58156000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96668000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "83688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96668000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "88688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46016000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "45848000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "76408000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84880000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "72376000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "96460000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "84256000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "93372000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "92776000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "97420000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71748000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97420000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96396000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97420000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96396000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92756000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58704000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96396000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58372000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72340000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88916000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72280000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93092000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89120000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93092000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93492000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72428000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93092000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101172000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46100000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88868000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101172000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93376000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101172000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59492000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100568000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59072000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85032000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89764000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100568000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88944000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100568000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98108000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98108000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96948000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84780000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "98108000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "45884000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72308000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46300000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72276000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85248000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93380000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85008000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46156000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93580000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72104000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97828000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97828000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58744000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97828000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84624000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97352000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97352000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88516000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84900000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97352000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88196000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58852000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72424000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88936000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46072000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71488000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46188000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83760000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72164000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92916000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "93512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83736000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "45900000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "74352000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96212000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96212000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92928000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "59084000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96212000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58936000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97444000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72652000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97444000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71156000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88932000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97444000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "88992000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "49244000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92980000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62728000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "100720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87896000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92808000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46076000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46440000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "91924000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47316000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46076000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "47316000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46260000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "53376000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "66996000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83944000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "86884000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "50616000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96064000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87452000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99648000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96276000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63316000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96276000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99648000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87480000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92200000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "45932000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96276000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99596000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "62564000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "45940000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99596000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "65072000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "82992000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "83784000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "91296000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92072000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "61408000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "82696000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95716000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "91580000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "52600000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95456000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58576000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95456000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "63140000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "87708000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "95456000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "72000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92048000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "46312000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89044000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99492000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "71848000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92936000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99492000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84828000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "92888000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "99492000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58860000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "85076000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "58292000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "84844000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "89724000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88624000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97396000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58448000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97396000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83792000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89008000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97396000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "45872000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46184000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "71744000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74536000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84152000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92852000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46172000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "85420000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93504000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72152000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97588000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84732000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93216000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97588000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97588000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59088000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97300000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58700000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97300000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "74724000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89000000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97300000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93212000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89244000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58428000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93212000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72100000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93212000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88244000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92816000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46256000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92816000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46244000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72120000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92816000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58448000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84496000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46008000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84568000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93200000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59676000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89020000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97240000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96920000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97240000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88400000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96920000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97240000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97556000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96920000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59028000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97556000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58536000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72324000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97556000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89068000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72384000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93544000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "89196000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59344000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93428000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "70980000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101024000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83408000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83408000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "45696000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101024000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "101024000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84724000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58344000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "57936000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84724000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "85268000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46208000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88532000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "85176000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88524000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58564000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97220000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84708000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88232000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97220000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97220000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46188000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46344000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "68964000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84852000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96896000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "85476000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93008000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72596000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97016000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93320000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97016000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84148000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97016000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92684000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "57912000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97612000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97160000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58360000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72164000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97160000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72284000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97160000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88956000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93372000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88776000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58056000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92648000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93372000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "71996000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93372000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92648000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92648000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93292000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93292000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72240000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46160000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93292000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83804000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "59448000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46028000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84124000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93252000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96404000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58476000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88336000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96404000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83892000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88828000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96404000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58712000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "97416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46208000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72564000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88944000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "72544000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "46380000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "92596000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84044000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "64424000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100672000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "93380000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96652000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100672000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84048000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "91984000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "100672000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96652000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96732000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "58232000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96652000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "83544000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96732000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "57184000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "84636000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "88656000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "96732000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88944000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "57528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83632000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96472000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88516000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96472000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96472000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46052000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "64080000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84040000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92480000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46152000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95580000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92456000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68396000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84100000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95580000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "91940000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95580000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58004000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71800000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58540000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72180000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88588000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89616000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "57792000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92640000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92640000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93144000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100312000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92640000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92640000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100312000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93332000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "57716000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100312000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100804000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100804000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58500000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84176000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100804000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84576000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88652000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58016000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95956000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88792000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95956000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84532000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88980000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "95956000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46448000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46064000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "69892000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72356000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83992000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "91856000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84380000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93412000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72512000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84284000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93124000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96444000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58352000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71956000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72192000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88796000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88540000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "57768000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92984000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93256000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88676000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92984000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92984000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46324000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92108000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "59132000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45892000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100896000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84472000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58276000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100896000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46424000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88680000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58396000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88368000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97708000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84188000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97708000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96040000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88380000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97708000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96040000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96040000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58024000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96280000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58740000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72356000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96280000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88716000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72168000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96280000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88628000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45868000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93108000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72484000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92896000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100852000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100852000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100516000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84588000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100516000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93152000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100852000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "59528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "100516000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "85176000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58636000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84972000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89188000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58144000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "88728000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96776000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96776000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84516000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97780000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97780000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96776000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89064000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "97780000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46004000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "46300000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71904000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72400000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "84988000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83984000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "45920000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "71312000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "83456000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "92672000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96084000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96168000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58884000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "72592000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96168000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58492000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "96168000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89236000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "68108000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "89340000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "93680000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "58560000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93680000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72136000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93680000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89036000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92956000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46428000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46020000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100784000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "59440000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100784000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58852000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "85004000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89620000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45956000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84548000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97852000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "57632000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89076000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97852000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84176000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89136000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97852000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96616000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46272000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96616000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46096000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72464000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72336000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96616000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "85312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46232000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84776000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93600000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97344000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72064000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97344000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84936000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92924000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97344000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58348000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97236000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84684000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97236000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58220000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97236000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88688000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71572000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "57760000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88652000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "68436000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89244000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "45636000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92072000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92072000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46168000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72392000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "83820000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92072000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70596000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93292000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46148000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84036000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56648000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96492000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84108000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96492000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97148000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88680000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96492000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58112000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "53848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72044000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "64120000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87960000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "54056000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93532000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "65072000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100792000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92076000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100792000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99340000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88912000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100792000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99340000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92296000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99340000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58152000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "56036000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84208000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88904000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "99848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84272000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "55564000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88504000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "83236000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96068000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96688000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87824000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96068000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96068000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46012000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71444000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "95848000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71980000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84208000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93292000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "70524000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92924000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96716000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "79656000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96716000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "83272000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96716000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97256000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58312000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84288000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84288000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72436000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "57876000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72176000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84288000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89016000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88656000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58400000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93004000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93004000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93268000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72012000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93004000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89300000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100620000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93004000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93108000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100620000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58488000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100928000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100620000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "58296000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100928000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "85104000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "100928000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84764000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "88268000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "54084000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "89044000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97580000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97580000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96908000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84404000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96908000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97580000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "87808000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46360000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96908000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46280000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "75684000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "96636000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84744000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "72380000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "84788000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "46548000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "92668000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "71748000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "93540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "97156000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84132000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97156000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97156000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93044000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58284000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96536000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96536000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58476000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70480000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96536000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88512000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "57960000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88788000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "69084000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88260000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46148000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91860000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46344000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91860000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71600000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84312000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91860000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58468000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84204000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92628000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "45828000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "43008000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88124000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "68380000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87208000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "49296000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95792000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46204000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "61860000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95792000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95792000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "63596000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87240000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46316000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "90624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83156000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91960000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62936000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "82528000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95676000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95676000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91652000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95676000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95420000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53848000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53016000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95420000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "64132000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95420000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62872000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87720000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92360000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54112000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92288000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "65756000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87960000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92148000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99816000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54936000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84164000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53628000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99816000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99816000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88740000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84608000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88096000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51640000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "82888000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97248000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97248000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88060000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46036000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97248000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "45944000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62116000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "82992000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72040000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "91624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46356000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93284000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96136000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71936000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83672000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96136000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93168000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96136000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96504000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "57976000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "54172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70176000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88792000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71860000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88512000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "53680000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62352000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92968000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87596000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100576000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92404000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100576000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "52032000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "100576000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "81852000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "55252000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93708000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84464000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "99472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102352000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "51440000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "88992000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83260000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102352000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "87616000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "102352000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "45856000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95684000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96728000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "62752000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95684000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46216000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "95684000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72408000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83496000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "46036000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "92128000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "84692000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "70148000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93228000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97564000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "83468000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97564000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93192000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "58948000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "97564000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96100000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "57976000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "71972000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96100000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "96100000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "72244000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "93568000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "89108000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "57484000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68992000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93000000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100924000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89096000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100924000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "91728000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100924000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58000000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57536000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84084000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88892000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84312000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88796000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58464000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84608000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96708000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89208000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96708000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45864000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96708000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71368000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45896000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83752000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72172000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84272000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92304000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46348000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71592000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93388000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96248000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93736000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96248000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96248000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58100000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "65852000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87848000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88536000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92144000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "68888000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100088000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93052000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100276000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100088000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89444000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92256000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100088000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100276000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101024000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57992000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100276000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84360000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101024000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "59708000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89076000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46040000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "85856000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "89024000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96292000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58632000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96292000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83792000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96292000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88656000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96752000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45684000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "97576000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96752000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71904000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45996000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96752000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84732000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72104000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92652000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46360000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84828000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "70628000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92788000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83212000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93072000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96788000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58396000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72204000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58968000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88756000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "75128000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88872000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57840000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "71856000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88772000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93396000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101252000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "49660000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101252000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58324000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "82228000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84296000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87544000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "101252000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95864000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88920000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53568000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83708000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95864000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88564000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95864000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "45884000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96500000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "63424000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46008000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96116000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "63196000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84244000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "46064000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "91860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83636000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "64488000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "91784000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "83920000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92140000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "58424000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96260000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "72540000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "55316000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88712000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "66676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "53600000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "62192000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100908000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "87856000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "92004000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100908000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "93356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57588000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "100908000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99520000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84112000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57924000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99520000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "99520000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "84208000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88812000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "57864000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "88608000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96800000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83780000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96800000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96284000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88648000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96800000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46196000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46376000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "69224000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70972000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96576000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46056000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92340000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83656000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92980000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96200000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83764000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96180000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92016000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96200000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96200000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58284000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68720000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58300000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "72240000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88120000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57048000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88476000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92132000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68008000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93112000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92132000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88492000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93112000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92132000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92132000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92292000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93112000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100788000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93112000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58700000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57816000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84012000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100788000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100788000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88912000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "80188000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83272000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53956000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84832000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "89004000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84832000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46084000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96748000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84832000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46256000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96748000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "71676000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84684000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96748000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93644000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "45936000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83932000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92680000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "63184000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "82652000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92492000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96804000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "56240000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58440000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "66932000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88292000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95408000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "64000000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91984000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "52664000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88272000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100548000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92136000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "67000000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99936000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100548000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88476000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100548000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99936000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92080000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "56936000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99936000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100128000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100128000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83764000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57040000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100128000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88696000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88592000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "58136000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84472000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96528000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96528000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96628000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87940000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96528000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46228000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46304000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "71944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95964000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70288000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84012000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "45564000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92844000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96264000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93044000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "61972000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96220000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "82896000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96264000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91268000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96220000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96264000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95660000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "57104000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96220000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "54500000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95660000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68996000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88544000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95660000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "65240000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88144000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "50776000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92464000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "92308000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62424000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101120000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101120000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100292000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88140000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "91952000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "101120000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100292000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "100292000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "56336000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "84488000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "49456000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88712000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83080000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "99396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "87736000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "53244000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95708000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83972000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95708000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "88340000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96864000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "95708000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "46104000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "68788000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "45724000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "96428000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "70696000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "81704000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "98232000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "83928000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "45960000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "93280000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "62608000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "102196000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83628000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102196000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "102196000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "91688000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "57688000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58348000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72020000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "69864000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88816000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93048000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "89068000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101040000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93492000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62584000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101040000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83868000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92640000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101040000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58484000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96516000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58328000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96516000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72160000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96516000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88736000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71976000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88560000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58620000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "70572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93132000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93132000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "89232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45972000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93132000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92732000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46116000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72072000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92732000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "59348000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83452000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92732000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84456000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46160000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92564000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58160000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88984000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83764000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97528000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97528000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96176000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88180000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97528000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "57792000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72508000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46064000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88816000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "68156000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46000000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "93440000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84988000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "73316000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92724000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84348000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92848000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "101000000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97380000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58824000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96876000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84428000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58360000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97380000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97380000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71972000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88368000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96984000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88400000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "56572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96984000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92904000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "63576000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92904000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88028000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96984000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92472000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92904000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46096000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92472000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46220000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92472000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83504000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71756000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92700000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "46048000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84412000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58616000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92384000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84208000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96964000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88860000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95976000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96964000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58052000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96964000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "71876000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "70724000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "96088000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88752000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83572000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92896000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45868000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "62840000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "83520000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84484000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84212000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "100960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "92264000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84484000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95940000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "58180000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "84484000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95940000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "57948000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "85288000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "72340000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "95940000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "89040000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97444000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "55744000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88560000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "55744000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97444000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "88560000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45924000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "45880000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "97444000" - } - ] - }, - { - "name": "AGG_NETWORK_BYTES", - "metrics": [ - { - "time": "1970-01-18T05:54:08+00:00", - "value": "589204000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "617368000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "602904000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588556000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "603744000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "623948000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637848000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633420000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "627840000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "646012000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637516000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "650620000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "631936000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637516000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "640128000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "650620000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637516000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "640128000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "650620000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "640128000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637516000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "650620000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "600284000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "589968000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "624484000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625372000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "603436000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "628956000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629092000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "607676000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "632332000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636940000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636940000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "600580000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636940000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "621060000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "599064000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "619596000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625572000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "628484000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629252000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633348000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633092000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629668000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "640260000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641028000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641028000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588372000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "600364000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "599376000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "620844000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "600120000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "604252000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629892000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625692000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "621148000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625244000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629276000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633988000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625244000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637980000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641668000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625244000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637980000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641668000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "637980000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588424000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "620684000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "600252000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "620728000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "624648000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "624268000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "621008000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629552000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633688000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "633352000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636936000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636760000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "634160000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636936000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641328000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636760000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "636936000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "641328000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588860000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "599340000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "620960000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "621472000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "620752000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "625808000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "624848000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "624544000" - }, - { - "time": "1970-01-18T05:54:08+00:00", - "value": "629392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638096000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "632528000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626080000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626080000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638096000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638096000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626080000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599196000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599604000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "589440000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "620768000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "621288000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625296000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623840000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629904000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624872000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624864000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633576000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637584000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637584000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624864000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624864000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637584000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598984000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599532000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "621152000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626592000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599408000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "630176000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629596000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625440000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638368000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629024000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633180000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637216000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638368000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "638368000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637216000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641372000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637216000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598972000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619736000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619600000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "620316000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629756000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625064000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633340000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624096000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633256000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637352000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624096000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641532000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641532000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637352000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626144000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637352000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626144000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619988000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598220000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599132000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624800000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619544000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625336000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633040000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628468000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629944000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637136000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633076000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637136000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640244000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637136000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640244000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598912000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598772000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619488000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625104000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624368000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628976000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623460000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629712000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "632676000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636260000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599480000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598496000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623592000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619960000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625268000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624344000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628200000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629364000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "635880000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624344000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "635880000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637044000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "626392000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637044000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "635880000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599520000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588948000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637044000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598432000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "620696000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625280000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629640000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624812000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633224000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628396000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633472000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637100000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637568000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637568000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "641416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637100000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637100000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "603340000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619636000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623952000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624412000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619724000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "627916000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633168000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "632092000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636240000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "632524000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636700000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640204000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636240000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636700000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636240000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588848000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640204000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598960000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "589212000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599196000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "624900000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619936000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623352000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625660000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628632000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "629508000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633340000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637188000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636312000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637948000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637188000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636312000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637948000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636312000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637188000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "599496000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "598264000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637948000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "620456000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "625376000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619568000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628960000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "623600000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "628648000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "633052000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "632744000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636636000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640424000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "640424000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636636000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588952000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "636636000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "619240000" - }, - { - "time": "1970-01-18T05:54:09+00:00", - "value": "602900000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627800000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "623168000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "628696000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631896000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632792000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627776000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635456000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640472000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639552000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640472000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639552000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640472000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588484000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639552000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602768000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602260000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "624400000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "622784000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602948000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632592000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632000000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "628636000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635072000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631708000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635072000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640412000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635072000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640412000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640412000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635072000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "607092000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "622744000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602256000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627864000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627060000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "622368000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "630560000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635408000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635544000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "634656000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635544000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635544000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "634656000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635544000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "634656000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "634656000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588488000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602760000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "589180000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "607172000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "626988000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "623488000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627140000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631084000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627072000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635844000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639428000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "638764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635776000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "638764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635776000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639428000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635776000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "638764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639428000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635776000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602568000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "603848000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "624500000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "608116000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "623692000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "625012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627572000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631884000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "626548000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636276000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639860000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "626548000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "626548000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639860000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639860000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602364000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602272000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "623540000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "623500000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602932000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "628236000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632092000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631732000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631820000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636188000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635828000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636188000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635828000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636188000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635828000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635828000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636188000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640012000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "589148000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602940000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "622388000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "606760000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627508000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627240000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "604300000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "634920000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635188000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "622220000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "625804000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639284000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "625804000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639284000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639284000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639016000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "625804000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "625804000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "603288000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "603076000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "606556000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627412000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627688000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632020000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632140000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639700000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "635704000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639800000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639700000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639800000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639700000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "639800000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588496000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588596000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "619216000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588532000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602632000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "624300000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602876000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "607372000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632212000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "627912000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "631980000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636588000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "632384000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636588000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636588000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636308000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "636588000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "640576000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588944000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602884000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "606524000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "602764000" - }, - { - "time": "1970-01-18T05:54:10+00:00", - "value": "607624000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "607136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632468000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "627108000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636564000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "631452000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "635420000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636564000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636060000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "635420000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636060000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636564000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "635420000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636060000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636564000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "635420000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588528000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623000000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "602928000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "607888000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "627096000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628368000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "615056000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "630928000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636048000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634776000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636048000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639384000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636048000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639384000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636048000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639384000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588760000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603384000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603208000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628552000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628076000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "608304000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632684000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "627760000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "633160000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636084000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640328000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640180000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640328000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640364000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640180000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640328000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640180000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "602460000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588500000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603556000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "608580000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "607136000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "602504000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "631712000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "627212000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632132000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634784000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "631308000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "638988000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634784000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634784000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "638988000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "638988000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634784000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636740000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "597948000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "589092000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "619816000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623816000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "607920000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "627376000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628424000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "619816000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636104000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636080000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623400000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623912000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639664000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636104000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623912000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639664000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636104000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623912000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639664000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636104000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588972000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623912000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588452000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588940000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603240000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "602772000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623244000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "624860000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628144000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "631728000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "624268000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "629468000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639920000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "626316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639920000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "626316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "639920000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "626316000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588928000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637148000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588404000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603396000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "616832000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628532000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "616512000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "620608000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "633140000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632704000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637312000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640308000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636684000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637312000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640780000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640308000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640780000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637312000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "601552000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "622032000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640780000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637312000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "630380000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640780000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "598956000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634476000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "620200000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628664000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634476000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "624840000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632760000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "634476000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628936000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640440000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637128000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637128000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "625608000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640440000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "629192000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "599472000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "620008000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637896000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "620172000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623928000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "629036000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637896000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637896000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "633644000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632632000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636216000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "599620000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640812000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640812000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "624764000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636216000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636216000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "629372000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "640812000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "599060000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588492000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637052000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "603348000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "623964000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "637052000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "588500000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "628572000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "624616000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "632296000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636252000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "605968000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "606432000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636904000" - }, - { - "time": "1970-01-18T05:54:11+00:00", - "value": "636252000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "623328000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636252000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636904000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636904000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636252000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "589236000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "619524000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "607804000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588436000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620208000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624352000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "628284000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "632032000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636180000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633652000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636180000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636640000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636180000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636640000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636180000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636640000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "598588000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "602376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588928000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "623592000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "623408000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "628404000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "619652000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "632112000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "623792000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633008000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635184000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636080000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636084000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635184000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636080000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635184000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "599724000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636080000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588888000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620124000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625108000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588548000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "628692000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "626140000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "621392000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633820000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625488000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "634192000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637776000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588688000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "602204000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637776000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "603884000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "614804000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588768000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "630676000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "604396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620864000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "622828000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624664000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633584000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637168000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "635500000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637168000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637168000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "619732000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620128000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600116000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620396000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629612000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620904000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "623712000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624224000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633196000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625048000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624224000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "634264000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600112000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637336000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620764000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637336000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637336000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629740000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600164000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637336000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "634348000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "599460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625696000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641516000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641516000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "630304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625496000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637984000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "641516000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "630104000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637784000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637984000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600028000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637784000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624928000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637984000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637784000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629536000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "589420000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "621680000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620812000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625264000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633968000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624596000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588460000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633300000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636884000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620724000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636884000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624820000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636884000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633792000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600036000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636596000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620140000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "599696000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629208000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620176000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636596000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629524000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636596000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633816000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633816000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600264000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633108000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633816000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "640788000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "621256000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629728000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "640788000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633824000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600248000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588616000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600272000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625016000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633824000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633824000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "624992000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629624000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633824000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629088000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "600248000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636768000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636768000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "625336000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637304000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629376000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "599796000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "636768000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "620936000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "588492000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637056000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637056000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "622564000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "629128000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "626660000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "637056000" - }, - { - "time": "1970-01-18T05:54:12+00:00", - "value": "633736000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640904000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "635364000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640904000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620868000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638436000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624628000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638436000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640904000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638436000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633332000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599684000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636916000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625704000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600308000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636916000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "630312000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636916000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "628952000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637992000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600432000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637992000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637656000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637992000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637656000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621616000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "631116000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637656000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588748000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588440000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "635212000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620616000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620244000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "635212000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624544000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633068000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "635212000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "632872000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588576000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621008000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636968000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636968000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624592000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599596000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636968000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634176000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620968000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620740000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629672000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633256000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629612000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599620000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "632684000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621232000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629936000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633520000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600472000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641712000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625580000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600060000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641712000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624564000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "630188000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629828000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641712000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600504000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "626008000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637356000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588688000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629592000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588628000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620340000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624948000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620276000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "632628000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624372000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588412000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633272000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620932000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624516000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599376000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633220000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625964000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599520000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621724000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "630572000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629404000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636804000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638252000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638252000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634012000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600512000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634012000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638252000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621280000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634012000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629472000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620656000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634080000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634080000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624752000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "621476000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633020000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634080000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625060000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "589224000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637116000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633764000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "601296000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637116000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637116000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625872000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629456000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599644000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638160000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599456000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620972000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620336000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638160000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629464000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629196000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "638160000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "634072000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599436000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641752000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "632780000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "641752000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640460000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620772000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629096000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640460000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588404000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "599292000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633192000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640460000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640872000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "624572000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600472000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629180000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640872000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625716000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "640872000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636860000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "630324000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637492000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "600236000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636860000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637492000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "636860000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625012000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588488000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637492000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "629620000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620988000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637300000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "588480000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "620376000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637300000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625772000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "637300000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "625472000" - }, - { - "time": "1970-01-18T05:54:13+00:00", - "value": "633964000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633152000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588500000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637760000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "622284000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625868000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637760000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637760000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634572000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599652000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625664000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600404000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "628736000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620884000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637440000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629244000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599684000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633852000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637440000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637440000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621336000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633852000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633852000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629528000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588840000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620772000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634136000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588440000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634136000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625768000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624420000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634136000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633448000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633124000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "589024000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637732000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600292000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624724000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637732000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637732000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629332000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "601104000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599764000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621220000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620756000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "630100000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634196000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "630028000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "598960000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641876000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634124000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641876000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "619644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641804000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641876000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641804000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "628292000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641804000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600560000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "632900000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600128000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625936000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "640580000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "640580000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "626196000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "630544000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638224000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "630804000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "640580000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638484000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638224000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600212000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638224000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638484000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624952000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "630072000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638484000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588448000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621340000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620308000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625912000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633592000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624916000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "632596000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588920000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621248000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636692000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "626024000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636692000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636692000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633704000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600172000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637800000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600628000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637800000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621108000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629812000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634004000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637800000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600172000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634004000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634004000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620652000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629356000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633908000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "632940000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588484000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600204000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599076000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625820000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624688000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629404000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641644000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638108000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629296000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638108000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599072000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638108000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "624752000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629360000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600248000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637040000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621420000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600028000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637040000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629888000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621420000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637040000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634496000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629612000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634220000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "642176000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588700000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620280000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "642176000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "642176000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625376000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599792000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "641388000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "633056000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625136000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "599520000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "628720000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621064000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637424000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637664000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "600124000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634084000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637424000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634084000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625044000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "637424000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "629652000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588788000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634084000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636820000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "620948000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "626032000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "621476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636820000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "636820000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "625572000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634224000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "588476000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "634276000" - }, - { - "time": "1970-01-18T05:54:14+00:00", - "value": "638320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620712000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633000000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600004000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637348000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600400000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621320000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629512000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621144000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629848000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600356000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633944000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621316000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633608000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641624000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629508000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641624000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634116000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641624000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600544000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641284000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600972000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "626100000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "630196000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641284000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "626432000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "630016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641284000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600116000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625544000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629688000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638720000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588892000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620832000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621580000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625888000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634080000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637368000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "626336000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588424000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634016000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621132000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638112000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638112000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625740000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600872000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638112000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633420000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625852000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638028000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600128000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638028000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629436000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625700000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638028000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "628772000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600748000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621480000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637476000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "630184000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588432000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620836000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634280000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "624932000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620852000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634280000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633636000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634280000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "624436000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636708000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633344000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621496000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636708000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636928000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636708000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "626104000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636928000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633784000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600116000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636928000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600744000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638392000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621108000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638392000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621064000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629124000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633732000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638392000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629768000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "598996000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633732000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633864000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633732000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620192000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641544000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641544000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "628384000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633732000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588704000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588652000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "632992000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "589168000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640672000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588704000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640672000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "589168000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "589504000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640672000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "599732000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "608088000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625568000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640672000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "627544000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636616000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "629152000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640200000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637344000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620236000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637344000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640200000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "628656000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633264000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588968000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637344000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640944000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "603308000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "640944000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620276000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "624120000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625472000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588460000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "631800000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636408000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633152000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "603216000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "623460000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636408000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "636408000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "632164000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "637248000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600096000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "635748000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "635748000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "620576000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "628920000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "635748000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621372000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633528000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "588480000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "630184000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641208000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "621552000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "634280000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641208000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "626288000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "633968000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641208000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "641960000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638064000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600056000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "625972000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "600160000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638064000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "638064000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "627076000" - }, - { - "time": "1970-01-18T05:54:15+00:00", - "value": "630068000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630660000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600624000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "639364000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624688000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629296000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "639364000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "639364000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588412000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621356000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621548000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624940000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633644000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588592000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "626156000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636716000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634348000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621380000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636716000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625988000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636716000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600228000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638276000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600588000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621652000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638276000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620556000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629844000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638276000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633940000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630364000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600184000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633940000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620664000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634972000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633940000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634972000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633788000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634972000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633788000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588520000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620688000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633788000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600400000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625760000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588592000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625688000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633440000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600936000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630296000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638048000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "626024000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638048000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638048000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638312000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637976000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "601140000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638312000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600364000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621380000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638312000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629572000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620844000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634180000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630348000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600640000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "641860000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634444000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620764000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "642124000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "641860000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624516000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624516000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "589540000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "642124000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "642124000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625540000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600808000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600204000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625540000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "627344000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630928000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "626304000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629888000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600036000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638592000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625876000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629460000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638608000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638592000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638592000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638164000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "589112000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638164000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "622176000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "626272000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638164000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621568000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "626788000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634464000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621032000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638560000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634468000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638560000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638564000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625640000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638564000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638560000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633832000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "599672000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638564000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600208000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621008000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621732000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629200000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633956000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629924000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600284000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634020000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633956000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621276000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633956000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634020000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629828000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634020000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588500000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "621784000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588596000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625880000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600520000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625540000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634584000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638168000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629124000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638168000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624624000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637828000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629232000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637828000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "638168000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600356000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637828000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "589348000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620836000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "630032000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "622044000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634128000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625628000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "620172000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "641808000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "634332000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "641808000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625000000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "632680000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "641808000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636776000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "600168000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "624604000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636776000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "599696000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "625940000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "629212000" - }, - { - "time": "1970-01-18T05:54:16+00:00", - "value": "636776000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630548000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636892000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "599544000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625484000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636892000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637716000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630092000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636892000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637716000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637716000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620964000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620664000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625748000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "624760000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633428000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588672000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "632440000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620576000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "624672000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "632864000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637012000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637048000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600320000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621312000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600120000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621112000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629996000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630104000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600412000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621764000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634200000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634340000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600320000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600200000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625220000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625956000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629828000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600192000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629540000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625728000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630336000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638016000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "589036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620796000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638016000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638016000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621540000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588588000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "632924000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625468000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634172000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621164000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "624748000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633964000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600380000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621476000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600264000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621636000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629156000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629828000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633764000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600260000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620228000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633764000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633764000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629880000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633924000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "632952000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600756000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641656000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625920000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600172000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641656000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625172000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629504000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600244000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629268000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625424000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636948000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630032000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636948000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636948000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600036000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637200000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600068000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621824000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637200000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621888000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637200000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629568000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588596000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634624000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620980000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634176000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642304000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642304000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641344000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625588000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641344000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633780000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "642304000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "601272000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "641344000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625848000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600448000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "626836000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637876000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629944000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630420000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625660000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638612000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638612000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629756000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "638612000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588696000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588396000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620624000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621368000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "625528000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "624952000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633208000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620904000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634168000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636792000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636792000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "624620000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "633324000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636792000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "637240000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600344000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "621644000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600272000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "636908000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "630416000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "620752000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "629456000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "634512000" - }, - { - "time": "1970-01-18T05:54:17+00:00", - "value": "600396000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633040000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634512000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621388000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633040000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634512000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629776000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633872000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633040000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588764000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641552000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600680000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641552000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600468000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625888000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "630496000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625928000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599484000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "630536000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625484000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "630092000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638176000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588468000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638216000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588572000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620612000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "622572000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637772000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626036000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "627180000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621532000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634860000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638956000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626140000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638956000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633820000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638956000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600292000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626084000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600504000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637916000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629668000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620984000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599744000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629488000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620224000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634096000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634096000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638372000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629296000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634096000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "632880000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "632880000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588464000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621876000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "624948000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "632880000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621648000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634164000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588900000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625232000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599868000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633424000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "638260000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629548000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600696000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621688000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "630976000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620708000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "628900000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599520000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "635072000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620152000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "642752000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "632996000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "642752000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640676000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629060000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "642752000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640676000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "632644000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640676000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599952000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599704000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625040000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629136000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "640324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625316000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599964000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629412000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636816000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "624540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637092000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636816000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636816000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "628636000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637092000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588644000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637092000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621048000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636540000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620832000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625320000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625572000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "589108000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634024000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621132000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633764000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621644000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625228000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637608000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599528000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626252000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626252000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621324000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621108000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "626252000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629516000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629676000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634124000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634124000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634284000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621080000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634124000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "629932000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634124000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634028000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "600164000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641708000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599932000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641708000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625252000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "641708000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625576000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "628884000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "599524000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "630184000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637864000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625208000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637864000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "628792000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588452000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637864000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636984000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636984000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620996000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "636984000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625604000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "621576000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "625968000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "588520000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "633796000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "620136000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "634160000" - }, - { - "time": "1970-01-18T05:54:18+00:00", - "value": "637892000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625148000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637892000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637892000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633852000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599664000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "600508000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621372000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621672000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "630076000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599972000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "630376000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620452000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629608000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634472000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633192000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588440000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633192000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621100000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625708000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633192000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599992000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625492000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599420000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636972000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629076000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625812000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636972000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "628884000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636972000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599104000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "603224000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637588000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620816000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "628240000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "589172000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "631824000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624500000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633204000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "619916000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624012000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636276000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636276000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "632716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640016000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636276000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636300000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599412000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599712000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636300000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620320000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636300000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629064000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621036000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "628716000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633160000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599152000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640840000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633324000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "619904000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640840000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640492000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629252000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640492000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "632836000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640840000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640516000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599560000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640492000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624928000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599652000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640516000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "640516000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629024000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625672000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629256000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599228000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624212000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "628820000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "619644000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624416000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620784000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637524000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "632608000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624368000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588484000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621040000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633328000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636704000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636656000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599680000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "600340000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620252000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629536000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621088000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636912000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629792000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634144000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599196000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "619676000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634144000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633888000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629280000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641568000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634144000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633888000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634144000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641568000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641056000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "605104000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641568000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641056000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "639108000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "600056000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "643380000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "626340000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "641056000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "652084000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599008000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "630436000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624244000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "652084000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638116000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "628852000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "652084000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638116000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636532000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638116000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "619752000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636532000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "636532000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621072000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "625312000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "588440000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "632992000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "626052000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620456000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637600000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "634244000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638340000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637600000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "624776000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637600000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638340000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633992000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "600416000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "638340000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637064000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "599624000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "620896000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637064000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "637064000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "621056000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629600000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "633696000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "629760000" - }, - { - "time": "1970-01-18T05:54:19+00:00", - "value": "600112000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620592000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633856000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641376000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630388000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641536000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641376000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633460000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641376000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641536000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642164000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641536000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599876000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642164000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "624808000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629416000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642164000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625732000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630340000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600036000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625828000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638020000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629924000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638020000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588520000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637604000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638020000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620984000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637604000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625404000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621156000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637604000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625452000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634108000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "589644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621392000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634156000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637180000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637180000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625908000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637180000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "635124000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637740000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600472000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638196000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600612000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620952000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638196000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638196000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629144000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621604000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600032000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633240000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621512000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633892000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630628000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634212000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640408000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642404000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600328000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625220000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642404000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600772000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629828000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "589244000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "626704000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630288000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600512000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638992000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625400000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637508000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638992000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629496000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637176000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588888000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638992000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637176000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620852000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588900000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637176000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625460000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621088000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633140000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588812000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625696000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633580000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "624892000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633596000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637748000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636668000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600392000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "638188000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620872000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636668000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "601004000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629484000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636668000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621484000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629676000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599520000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620616000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629372000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634092000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633980000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641660000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "598832000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641660000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600368000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "623356000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625572000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "628692000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "641660000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "635860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630180000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600172000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "624236000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "635860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "628844000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "635860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588744000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637860000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636524000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621300000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636524000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "636524000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620472000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625908000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "588500000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633588000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "624368000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620228000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633072000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637684000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637680000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625284000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637684000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "632964000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637680000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637684000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600164000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637680000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621944000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599736000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629624000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637060000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "621720000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "630424000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "598940000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "620132000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634008000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642200000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "628644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "633252000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642200000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "634232000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599476000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "642200000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640932000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "625036000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "599800000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640932000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "640932000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "624820000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629644000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "600412000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "629428000" - }, - { - "time": "1970-01-18T05:54:20+00:00", - "value": "637324000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637108000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637324000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625456000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637108000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637324000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629552000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637108000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637232000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588880000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637232000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588736000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619792000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620328000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624400000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637232000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588508000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632592000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625068000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619596000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633260000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636844000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625160000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636688000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633352000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636844000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636844000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "600392000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620532000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "600308000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "621144000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637448000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629916000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629336000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632988000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619768000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632988000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629892000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632988000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632988000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633476000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641668000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599560000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599360000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625208000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641668000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641668000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629816000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "621136000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637496000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624208000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599672000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625384000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625744000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637496000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629992000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625744000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637496000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625744000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "621048000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625636000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620988000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637160000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "634340000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625336000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637924000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633016000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620308000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637924000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624068000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633284000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637924000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637624000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599944000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636356000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "600024000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620424000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636356000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629128000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636356000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620668000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632712000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "598940000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629044000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633652000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619564000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "640820000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "630524000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "640820000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "634108000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599672000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "640820000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "642300000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "642300000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625064000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "601000000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "642300000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625108000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629160000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629716000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636840000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599460000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624808000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636840000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636840000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "628392000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588660000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "622540000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637096000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "626124000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620476000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624916000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588832000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "635340000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "638412000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633620000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "603172000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637204000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624128000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "638412000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632320000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637204000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "638412000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599756000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637204000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "600020000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620620000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629324000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "636416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "621464000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "630168000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "598860000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "632908000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633752000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619984000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641100000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641100000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641432000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "630152000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "634760000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641100000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641432000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641432000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599760000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641928000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "625492000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599068000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641928000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "630100000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624816000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "641928000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629424000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "599252000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637104000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624732000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637104000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "629340000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637780000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637104000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "618452000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588616000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "637020000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "620780000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "639080000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "647272000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "624876000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "588424000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "633580000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "619640000" - }, - { - "time": "1970-01-18T05:54:21+00:00", - "value": "651880000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625112000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "651880000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "651880000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "632792000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599816000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636888000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637164000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600084000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "620808000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636888000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "620416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629680000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636888000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634288000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629808000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588488000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633904000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "619872000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625232000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641584000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633424000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641584000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600820000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641584000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600596000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621852000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637520000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "630044000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621744000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "630104000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600636000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634652000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "622432000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634200000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634652000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634652000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634200000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "630332000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588956000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634200000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633916000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621456000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633916000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600680000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625040000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633916000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625852000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588388000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633744000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637328000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599492000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629436000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "624616000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637328000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637328000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629280000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638140000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600376000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621368000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588568000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629560000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621524000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "636960000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634168000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625620000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641336000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633300000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "626152000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641336000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633832000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641336000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600644000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637396000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625956000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600012000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637928000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621320000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629540000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "630124000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599524000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634220000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "620928000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634220000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629228000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638244000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633836000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634220000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588704000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633836000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "620800000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588448000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633836000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "624752000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621256000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633968000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625864000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600100000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633544000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "624740000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638152000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629348000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637552000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638152000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600068000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638152000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637028000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621236000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599684000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637028000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "619928000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637028000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629428000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "624024000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "634036000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "620448000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641716000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "624024000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625048000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625204000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641716000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "641716000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "633032000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625048000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637128000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600148000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "625048000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637128000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "600332000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "626000000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "621324000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "637128000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629584000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638288000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599600000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629516000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "599600000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638288000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "629516000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588692000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "588416000" - }, - { - "time": "1970-01-18T05:54:22+00:00", - "value": "638288000" - } - ] - } -] diff --git a/packages/cp-gql-mock-server/src/resolvers.js b/packages/cp-gql-mock-server/src/resolvers.js deleted file mode 100644 index e7534597..00000000 --- a/packages/cp-gql-mock-server/src/resolvers.js +++ /dev/null @@ -1,893 +0,0 @@ -const { detailedDiff } = require('deep-object-diff'); -const Delay = require('delay'); -const forEach = require('apr-for-each/series'); -const map = require('apr-map/series'); -const paramCase = require('param-case'); -const camelCase = require('camel-case'); -const buildArray = require('build-array'); -const forceArray = require('force-array'); -const lfind = require('lodash.find'); -const findIndex = require('lodash.findindex'); -const uniq = require('lodash.uniq'); -const yaml = require('js-yaml'); -const hasha = require('hasha'); -const moment = require('moment'); -const IPC = require('crocket'); -const Boom = require('boom'); - -const { NODE_ENV, SOCK_PORT } = process.env; -const IS_TEST = (NODE_ENV || '').toLowerCase() === 'test'; - -const emit = (() => { - if (!IS_TEST) { - return () => null; - } - - let index = 0; - const sock = new IPC(); - - sock.listen({ port: Number(SOCK_PORT) }, err => { - if (err) throw err; - - // eslint-disable-next-line no-console - console.log('sock bound to %d', SOCK_PORT); - }); - - return (name, payload) => { - sock.emit(name, { index: (index += 1), payload }); - }; -})(); - -const wpData = require('./wp-data.json'); -const cpData = require('./cp-data.json'); -const complexData = require('./complex-data.json'); -const metricData = [ - require('./metric-datasets-0.json'), - require('./metric-datasets-1.json'), - require('./metric-datasets-2.json') -]; - -const { datacenter, portal } = require('./data.json'); - -const deploymentGroups = [ - wpData.deploymentGroup, - cpData.deploymentGroup, - complexData.deploymentGroup -]; - -const services = wpData.services - .concat(cpData.services) - .concat(complexData.services); - -const instances = wpData.instances - .concat(cpData.instances) - .concat(complexData.instances); - -const INTERPOLATE_REGEX = /\$([_a-z][_a-z0-9]*)/gi; -const wait = (s, fn) => setTimeout(fn, s * 1000); -// eslint-disable-next-line new-cap -const delay = s => Delay(s * 1000); - -const find = (query = {}) => item => - Object.keys(query).every(key => item[key] === query[key]); - -const cleanQuery = (q = {}) => JSON.parse(JSON.stringify(q)); - -let metricDataIndex = 0; - -const cleanDiff = (diff, meta) => { - const obj = Object.assign(diff, meta); - - return Object.keys(obj).reduce((acc, key) => { - if ( - ['added', 'deleted', 'updated'].indexOf(key) >= 0 && - !Object.keys(obj[key]).length - ) { - return acc; - } - - acc[key] = obj[key]; - return acc; - }, {}); -}; - -const diff = (before, after, metaProp) => { - if (!IS_TEST) { - return; - } - - const detail = detailedDiff(before, after); - const cleaned = cleanDiff(detail, { - [metaProp]: before[metaProp] - }); - - return ['added', 'deleted', 'updated'].reduce((diff, type) => { - if (!diff[type]) { - return diff; - } - - return Object.assign(diff, { - [type]: Object.keys(diff[type]).reduce( - (change, name) => - Object.assign(change, { - [name]: { - before: before[name], - after: diff[type][name] - } - }), - {} - ) - }); - }, cleaned); -}; - -/** *************************************************************************** */ - -const getMetrics = query => { - const { names, start, end, instanceId } = query; - - const metrics = names.reduce((metrics, name) => { - // pick one of the three metric data jsons, so there's variety - const index = metricDataIndex % metricData.length; - metricDataIndex++; - - const md = metricData[index].find(md => md.name === name); - const m = md.metrics; - - const s = moment.utc(start); - const e = moment.utc(end); - - // how many records do we need? - const duration = e.diff(s); // duration for which we need data - const records = Math.floor(duration / 15000); // new metric record every 15 secs - - const requiredMetrics = []; - let i = 0; - const time = moment(s); - // start at a random point within the dataset for variety - const randomIndex = Math.round(Math.random() * m.length); - while (i < records) { - const index = (randomIndex + i) % m.length; // loop if not enough data - const requiredMetric = m[index]; - requiredMetric.time = time - .add(15, 'seconds') - .utc() - .format(); // we should have a new record every 15 secs - requiredMetrics.push(requiredMetric); - i++; - } - - const requiredMetricData = { - instance: instanceId, - name, - start: s.utc().format(), - end: time.utc().format(), // this will be used by the frontend for the next fetch - metrics: requiredMetrics - }; - metrics.push(requiredMetricData); - return metrics; - }, []); - - return Promise.resolve(metrics); -}; - -const getInstanceMetrics = ({ id }) => query => - getMetrics( - Object.assign({}, query, { - instanceId: id - }) - ); - -const updateInstance = async query => { - await delay(0.5); - - const instanceIndex = findIndex(instances, ['id', query.id]); - const original = cleanQuery(instances[instanceIndex]); - - instances[instanceIndex] = Object.assign( - instances[instanceIndex], - cleanQuery(query) - ); - - emit('instance-updated', diff(original, instances[instanceIndex], 'name')); - - return instances[instanceIndex]; -}; - -const getInstances = async query => { - await delay(0.1); - - return instances.filter(find(cleanQuery(query))).map(instance => - Object.assign({}, instance, { - metrics: getInstanceMetrics(instance) - }) - ); -}; - -const getInstance = async query => { - const instance = (await getInstances(query)).shift(); - - if (!instance) { - throw Boom.notFound(); - } - - return instance; -}; - -// Just creates an instance, but doesn't move it out of PROVISIONING -// it doesn't append the isntance to the global list of instances -const createInstance = async (service, i) => { - await delay(0.5); - - const _instance = { - name: camelCase(`${service.slug}_${i || 1}`), - deploymentGroupId: service.deploymentGroupId, - serviceId: service.id - }; - - const instance = Object.assign({}, _instance, { - id: hasha(JSON.stringify(_instance)), - status: 'PROVISIONING' - }); - - emit('instance-created', instance); - - return instance; -}; - -// Takes a PROVISIONING instance and moves it to RUNNING -// it doesn't append the isntance to the global list of instances -const provisionInstance = async instance => { - await delay(3); - - await updateInstance({ - id: instance.id, - status: 'READY' - }); - - await delay(1); - - await updateInstance({ - id: instance.id, - status: 'RUNNING' - }); - - emit('instance-provisioned', instance.id); - - return instance; -}; - -const stopInstance = async id => { - const instance = await getInstance({ id }); - - if (!instance) { - return; - } - - if (instance.status === 'STOPPED') { - return instance; - } - - await delay(1); - - await updateInstance({ - id, - status: 'STOPPING' - }); - - await delay(0.5); - - await updateInstance({ - id, - status: 'STOPPED' - }); - - emit('instance-stopped', id); - - return getInstance({ id }); -}; - -const deleteInstance = async id => { - const instance = await getInstance({ id }); - - if (!instance) { - return; - } - - if (instance.status === 'DELETED') { - return instance; - } - - await stopInstance(id); - - await delay(1); - - await updateInstance({ - id, - status: 'DELETED' - }); - - emit('instance-deleted', id); - - return instance; -}; - -const startInstance = async id => { - const instance = await getInstance({ id }); - - if (!instance) { - return; - } - - if (instance.status === 'RUNNING') { - return instance; - } - - await updateInstance({ - id, - status: 'READY' - }); - - await delay(1); - - await updateInstance({ - id, - status: 'RUNNING' - }); - - emit('instance-started', id); - - return instance; -}; - -const restartInstance = async id => { - const instance = await getInstance({ id }); - - if (!instance) { - return; - } - - await stopInstance(id); - await delay(1); - await startInstance(id); - - emit('instance-restarted', id); - - return instance; -}; - -const updateService = async query => { - await delay(0.5); - - const serviceIndex = findIndex(services, ['id', query.id]); - const original = cleanQuery(services[serviceIndex]); - - services[serviceIndex] = Object.assign(services[serviceIndex], query); - - emit('service-updated', diff(original, services[serviceIndex], 'slug')); - - return services[serviceIndex]; -}; - -// Just creates a service, but doesn't move it out of PROVISIONING -// it doesn't append the service to the global list of services -const createService = async ({ deploymentGroupId, name }) => { - await delay(0.5); - - const _service = { - deploymentGroupId, - slug: paramCase(name), - name - }; - - const service = Object.assign({}, _service, { - id: hasha(JSON.stringify(_service)), - status: 'PROVISIONING' - }); - - emit('service-created', service); - - return service; -}; - -// Takes a PROVISIONING service and moves it to ACTIVE -// it doesn't append the service to the global list of services -// it does append the created instances to the global list of instances -const provisionService = async service => { - const instance = await createInstance(service); - - instances.push(instance); - - await provisionInstance(instance); - - await delay(0.5); - - return updateService({ - id: service.id, - status: 'ACTIVE' - }); -}; - -const deleteService = async id => { - const service = await getService({ id }); - - if (service.status !== 'DELETED') { - await updateService({ - id, - status: 'DELETING' - }); - } - - const instances = await getInstances({ serviceId: id }); - - await forEach(instances.map(({ id }) => id), deleteInstance); - await delay(0.5); - - if (service.status !== 'DELETED') { - await updateService({ - id, - status: 'DELETED' - }); - - emit('service-deleted', id); - } - - return getService({ id }); -}; - -const deleteServices = ({ ids }) => { - wait(0.5, async () => { - await forEach(ids, deleteService); - emit('services-deleted', ids); - }); - - return forEach(ids, id => getService({ id })); -}; - -const getServiceInstances = async (query, { id }) => { - await delay(0.1); - - const filter = Object.assign({}, query, { - serviceId: id - }); - - return (await getInstances(filter)).filter( - ({ status }) => ['DELETED', 'EXITED'].indexOf(status) < 0 - ); -}; - -const getBranchInstances = async (query, instanceIds) => - map(instanceIds, id => getInstance({ id })); - -const getServiceBranches = async (query, { branches }) => { - await delay(0.1); - - return forceArray(branches) - .filter(find(cleanQuery(query))) - .map(branch => - Object.assign({}, branch, { - id: hasha(JSON.stringify(branch)), - instances: query => getBranchInstances(query, branch.instances) - }) - ); -}; - -const getServices = async query => { - await delay(0.1); - - const _services = services.filter(find(cleanQuery(query))).map(service => - Object.assign({}, service, { - instances: query => getServiceInstances(query, service), - branches: query => getServiceBranches(query, service) - }) - ); - - if ( - (query.id || query.name || query.slug) && - (!_services || !_services.length) - ) { - throw Boom.notFound(); - } - - return _services; -}; - -const getService = async query => { - const service = (await getServices(query)).shift(); - - if (!service) { - throw Boom.notFound(); - } - - return service; -}; - -const restartService = async id => { - await updateService({ - id, - status: 'RESTARTING' - }); - - const instances = await getInstances({ serviceId: id }); - - await forEach(instances.map(({ id }) => id), restartInstance); - - await updateService({ - id, - status: 'ACTIVE' - }); - - emit('service-restarted', id); - - return getService({ id }); -}; - -const restartServices = async ({ ids }) => { - wait(1, async () => { - await forEach(ids, restartService); - emit('services-restarted', ids); - }); - - return forEach(ids, id => getService({ id })); -}; - -const stopService = async id => { - const service = await getService({ id }); - - if (service.status !== 'STOPPED') { - await updateService({ - id, - status: 'STOPPING' - }); - } - - const instances = await getInstances({ serviceId: id }); - - await forEach(instances.map(({ id }) => id), stopInstance); - - if (service.status !== 'STOPPED') { - await updateService({ - id, - status: 'STOPPED' - }); - - emit('service-stopped', id); - } - - return getService({ id }); -}; - -const stopServices = async ({ ids }) => { - wait(1, async () => { - await forEach(ids, stopService); - emit('services-stopped', ids); - }); - - return forEach(ids, id => getService({ id })); -}; - -const startService = async id => { - const instances = await getInstances({ serviceId: id }); - - await forEach(instances.map(({ id }) => id), startInstance); - const service = await getService({ id }); - - if (service.status !== 'ACTIVE') { - await updateService({ - id, - status: 'ACTIVE' - }); - } - - return getService({ id }); -}; - -const startServices = async ({ ids }) => { - wait(1, async () => { - await forEach(ids, startService); - emit('services-started', ids); - }); - - return forEach(ids, id => getService({ id })); -}; - -const scale = async ({ serviceId, replicas }) => { - const service = lfind(services, ['id', serviceId]); - - const currentScale = instances.filter( - find({ - serviceId - }) - ).length; - - const dg = await getDeploymentGroup({ id: service.deploymentGroupId }); - - if (currentScale === replicas) { - return dg.version; - } - - const version = { - id: hasha(JSON.stringify({ currentScale, serviceId, replicas })) - }; - - await updateDeploymentGroup({ - id: service.deploymentGroupId, - history: forceArray(dg.history).concat(version), - version - }); - - await updateService({ - id: serviceId, - status: 'SCALING' - }); - - const up = async n => - forEach(buildArray(n), async (_, i) => { - const instance = await createInstance(service, currentScale + i); - - instances.push(instance); - - await delay(3); - - await updateInstance({ - id: instance.id, - status: 'READY' - }); - - await delay(1); - - await updateInstance({ - id: instance.id, - status: 'RUNNING' - }); - }); - - const down = async n => { - const instances = (await getInstances({ serviceId })) - .map(({ id }) => id) - .slice(0, n); - - await forEach(instances, deleteInstance); - }; - - wait(1, async () => { - const diff = replicas - currentScale; - const fn = diff >= 0 ? up : down; - - await fn(Math.abs(diff)); - await delay(1); - - await updateService({ - id: serviceId, - status: 'ACTIVE' - }); - - emit('service-scaled', serviceId); - }); - - return version; -}; - -const provisionManifest = async query => { - const { deploymentGroupId, raw } = query; - - const version = { - id: hasha(JSON.stringify(query)), - type: query.type, - format: query.format - }; - - const dg = await getDeploymentGroup({ id: deploymentGroupId }); - - await updateDeploymentGroup({ - id: deploymentGroupId, - status: 'PROVISIONING' - }); - - wait(3, async () => { - const _services = await map(Object.keys(yaml.safeLoad(raw)), async name => { - const service = await createService({ deploymentGroupId, name }); - services.push(service); - return service; - }); - - await updateDeploymentGroup({ - id: deploymentGroupId, - status: 'ACTIVE' - }); - - await forEach(_services, provisionService); - - emit('manifest-provisioned', version.id); - }); - - await updateDeploymentGroup({ - id: deploymentGroupId, - history: forceArray(dg.history).concat(version), - version - }); - - return version; -}; - -const createDeploymentGroup = async ({ name }) => { - await delay(1); - - const _dg = { - slug: paramCase(name), - name - }; - - const dg = Object.assign({}, _dg, { - id: hasha(JSON.stringify(_dg)), - status: 'ACTIVE' - }); - - deploymentGroups.push(dg); - - emit('dg-created', dg); - - return dg; -}; - -const getDeploymentGroups = async query => { - await delay(0.1); - - const addNestedResolvers = dg => - Object.assign({}, dg, { - services: () => getServices({ deploymentGroupId: dg.id }) - }); - - const dgs = deploymentGroups - .filter(find(cleanQuery(query))) - .map(addNestedResolvers); - - if ((query.ids || query.name || query.slug) && (!dgs || !dgs.length)) { - throw Boom.notFound(); - } - - return dgs; -}; - -const getDeploymentGroup = async query => - (await getDeploymentGroups(query)).shift(); - -const updateDeploymentGroup = async query => { - await delay(0.5); - - const dgIndex = findIndex(deploymentGroups, ['id', query.id]); - const original = cleanQuery(deploymentGroups[dgIndex]); - - deploymentGroups[dgIndex] = Object.assign(deploymentGroups[dgIndex], query); - - emit('dg-updated', diff(original, deploymentGroups[dgIndex], 'slug')); - - return deploymentGroups[dgIndex]; -}; - -const deleteDeploymentGroup = async ({ id }) => { - const dg = await getDeploymentGroup({ id }); - - await updateDeploymentGroup({ - id, - status: 'DELETING' - }); - - wait(1, async () => { - const services = await dg.services(); - - await forEach(services.map(({ id }) => id), deleteService); - - await updateDeploymentGroup({ - id, - status: 'DELETED' - }); - - emit('dg-deleted', id); - }); - - return getDeploymentGroup({ id }); -}; - -const getPortal = async () => { - await delay(0.1); - - return Object.assign({}, portal, { - datacenter, - deploymentGroups: getDeploymentGroups - }); -}; - -const parseEnvVars = (str = '') => - str - .split(/\n/g) - .filter(line => line.match(/\=/g)) - .map(line => line.split(/\=/)) - .reduce( - (acc, [name, value]) => - Object.assign(acc, { - [name.trim()]: value.trim() - }), - {} - ); - -const findEnvInterpolation = (str = '') => - uniq(str.match(INTERPOLATE_REGEX).map(name => name.replace(/^\$/, ''))); - -const config = ({ environment = '', files = [], raw = '', _plain = false }) => { - const interpolatableNames = findEnvInterpolation(raw); - const interpolatableEnv = parseEnvVars(environment); - - const interpolatedRaw = interpolatableNames.reduce( - (str = '', name) => - str.replace(new RegExp(`\\$${name}`), interpolatableEnv[name]), - raw - ); - - const manifest = yaml.safeLoad(interpolatedRaw); - const services = manifest.services || manifest; - - const config = Object.keys(services) - .map(name => - Object.assign(services[name], { - name - }) - ) - // eslint-disable-next-line camelcase - .map(({ name, image, env_file, environment }) => ({ - name, - slug: paramCase(name), - instances: [], - config: { - image, - environment: forceArray(env_file).reduce( - (env, file) => - Object.assign( - env, - parseEnvVars(lfind(files, ['name', file]).value) - ), - forceArray(environment) - .map(parseEnvVars) - .reduce( - (genv, variable) => Object.assign(genv, variable), - interpolatableEnv - ) - ) - } - })) - .map(service => - Object.assign(service, { - id: hasha(JSON.stringify(service)), - config: Object.assign(service.config, { - id: hasha(JSON.stringify(service.config)), - environment: Object.keys(service.config.environment).map(name => ({ - name, - id: hasha(JSON.stringify(service.config.environment[name])), - value: service.config.environment[name] - })) - }) - }) - ); - - return _plain ? config : Promise.resolve(config); -}; - -module.exports = { - portal: getPortal, - deploymentGroups: getDeploymentGroups, - deploymentGroup: getDeploymentGroup, - services: getServices, - service: getService, - instances: getInstances, - instance: getInstance, - createDeploymentGroup, - config, - provisionManifest, - deleteDeploymentGroup, - deleteServices, - scale, - restartServices, - stopServices, - startServices, - getMetrics -}; diff --git a/packages/cp-gql-mock-server/src/wp-data.json b/packages/cp-gql-mock-server/src/wp-data.json deleted file mode 100644 index 9d3e5ae9..00000000 --- a/packages/cp-gql-mock-server/src/wp-data.json +++ /dev/null @@ -1,184 +0,0 @@ -{ - "deploymentGroup": { - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "slug": "wordpress-blog-example", - "name": "Wordpress Blog Example" - }, - "services": [ - { - "id": "081a792c-47e0-4439-924b-2efa9788ae9e", - "slug": "nginx", - "name": "Nginx", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "connections": ["be227788-74f1-4e5b-a85f-b5c71cbae8d8"] - }, - { - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8", - "slug": "wordpress", - "name": "Wordpress", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "connections": [ - "6a0eee76-c019-413b-9d5f-44712b55b993", - "6d31aff4-de1e-4042-a983-fbd23d5c530c", - "4ee4103e-1a52-4099-a48e-01588f597c70" - ] - }, - { - "id": "6a0eee76-c019-413b-9d5f-44712b55b993", - "slug": "nfs", - "name": "NFS", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401" - }, - { - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c", - "slug": "memcached", - "name": "Memcached", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401" - }, - { - "id": "4ee4103e-1a52-4099-a48e-01588f597c70", - "slug": "percona", - "name": "Percona", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "branches": [ - { - "id": "dmklaskdls", - "slug": "percona", - "name": "Percona", - "instances": ["c3ec7633-a02b-4615-86a0-9e6faeaae94b"] - }, - { - "id": "dmklaskdls", - "slug": "percona-primary", - "name": "percona-primary", - "instances": ["c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76"] - } - ] - }, - { - "id": "97c68055-db88-45c9-ad49-f26da4264777", - "slug": "consul", - "name": "Consul", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401" - }, - { - "id": "primary-consul", - "slug": "consul", - "name": "Consul", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639" - }, - { - "id": "primary-nginx", - "slug": "nginx", - "name": "Nginx", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639" - }, - { - "id": "primary-mongodb", - "slug": "mongodb", - "name": "MongoDB", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639" - } - ], - "instances": [ - { - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c", - "name": "wordpress_01", - "serviceId": "be227788-74f1-4e5b-a85f-b5c71cbae8d8", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "machineId": "011f7479-2d45-442d-99bf-7f6216954cc8", - "status": "RUNNING", - "healthy": "HEALTHY" - }, - { - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2", - "name": "nfs_01", - "serviceId": "6a0eee76-c019-413b-9d5f-44712b55b993", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "machineId": "991c0d29-5c99-4a45-a05f-78c213e77d4f", - "status": "RUNNING", - "healthy": "HEALTHY" - }, - { - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d", - "name": "consul", - "serviceId": "97c68055-db88-45c9-ad49-f26da4264777", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "machineId": "ff5dd3a0-7c12-4ea9-8a41-58b759b2c76d", - "status": "RUNNING", - "healthy": "UNHEALTHY" - }, - { - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061", - "name": "memcache_01", - "serviceId": "6d31aff4-de1e-4042-a983-fbd23d5c530c", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "machineId": "8d8a2238-d981-4849-b523-a37456fbe20b", - "status": "STOPPING", - "healthy": "MAINTENANCE" - }, - { - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd", - "name": "memcache_02", - "serviceId": "6d31aff4-de1e-4042-a983-fbd23d5c530c", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "machineId": "f95ad0b9-996f-4f49-8826-e08dd319d5a8", - "status": "RUNNING", - "healthy": "HEALTHY" - }, - { - "id": "2ea99763-3b44-4179-8393-d66d94961051", - "name": "memcache_03", - "serviceId": "6d31aff4-de1e-4042-a983-fbd23d5c530c", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "machineId": "d6871ac4-6433-40c3-89e8-8853ce7f8571", - "status": "OFFLINE", - "healthy": "UNAVAILABLE" - }, - { - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d", - "name": "memcache_04", - "serviceId": "6d31aff4-de1e-4042-a983-fbd23d5c530c", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "machineId": "d89612c8-0578-474a-b45d-98a1dcf6dd18", - "status": "FAILED", - "healthy": "UNHEALTHY" - }, - { - "id": "8be01042-0281-4a77-a357-25979e87bf3d", - "name": "memcache_05", - "serviceId": "6d31aff4-de1e-4042-a983-fbd23d5c530c", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "machineId": "3a9fbaf8-722b-463a-86bd-8d3afe0dd759", - "status": "RUNNING", - "healthy": "UNKNOWN" - }, - { - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662", - "name": "nginx", - "serviceId": "081a792c-47e0-4439-924b-2efa9788ae9e", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "machineId": "76fe79b8-356b-408d-9089-93c87abdbe93", - "status": "RUNNING", - "healthy": "HEALTHY" - }, - { - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b", - "name": "percona-primary", - "serviceId": "4ee4103e-1a52-4099-a48e-01588f597c70", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "machineId": "bd57fbf6-f80a-4d59-a6cd-ab3e41813796", - "status": "RUNNING", - "healthy": "UNHEALTHY" - }, - { - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76", - "name": "percona-secondary", - "serviceId": "4ee4103e-1a52-4099-a48e-01588f597c70", - "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "machineId": "54f56455-3b0c-4e79-882c-ff28b517d2b9", - "status": "RUNNING", - "healthy": "HEALTHY" - } - ] -} diff --git a/packages/cp-gql-mock-server/test/index.js b/packages/cp-gql-mock-server/test/index.js deleted file mode 100644 index 6988d7e6..00000000 --- a/packages/cp-gql-mock-server/test/index.js +++ /dev/null @@ -1,1588 +0,0 @@ -const test = require('ava'); -const gql = require('graphql-tag'); -const { readFile } = require('mz/fs'); -const sortBy = require('lodash.sortby'); -const path = require('path'); -const execa = require('execa'); -const IPC = require('crocket'); - -global.fetch = require('node-fetch'); - -const { - default: ApolloClient, - createNetworkInterface -} = require('apollo-client'); - -const EVENT_TYPES = [ - 'manifest-provisioned', - 'instance-created', - 'instance-updated', - 'instance-provisioned', - 'instance-stopped', - 'instance-deleted', - 'instance-started', - 'instance-restarted', - 'service-updated', - 'service-created', - 'service-scaled', - 'service-deleted', - 'services-deleted', - 'service-restarted', - 'services-restarted', - 'service-stopped', - 'services-stopped', - 'service-started', - 'services-started', - 'dg-updated', - 'dg-created', - 'dg-deleted' -]; - -let port = 3000; -let sockPort = 2999; - -const fetchTag = file => - readFile(path.join(__dirname, `tags/${file}.gql`), 'utf-8'); - -const listen = (socket, check) => - new Promise(resolve => { - const events = []; - let off = false; - - EVENT_TYPES.forEach(name => - socket.on(name, ({ index, payload }) => { - // No .off API - if (off) { - return; - } - - const ev = { name, index, payload }; - - events.push(ev); - - if (!check(ev)) { - return; - } - - off = true; - - resolve( - sortBy(events, ['index']).map(({ name, payload }) => ({ - name, - payload - })) - ); - }) - ); - }); - -const getClient = () => - new Promise((resolve, reject) => { - const sock = new IPC(); - - // eslint-disable-next-line no-multi-assign - const _port = (port += 1); - // eslint-disable-next-line no-multi-assign - const _sockPort = (sockPort -= 1); - - sock._sockPort = _sockPort; - - // eslint-disable-next-line no-console - console.error('spawning node', { - _port, - _sockPort, - pid: process.pid - }); - - const server = execa('node', ['.'], { - stdio: 'pipe', - cwd: path.join(__dirname, '..'), - env: { - PORT: _port, - SOCK_PORT: _sockPort - } - }); - - const client = new ApolloClient({ - networkInterface: createNetworkInterface({ - uri: `http://localhost:${port}/api/graphql` - }) - }); - - server.stdout.on('data', d => { - if (!/server started at /.test(d)) { - return; - } - - sock.connect({ port: _sockPort }, err => { - if (err) { - return reject(err); - } - - // eslint-disable-next-line no-console - console.log('sock connected to %d', _sockPort); - - resolve( - Object.assign(client, { - sock, - _sockPort, - kill: () => { - // eslint-disable-next-line no-console - console.error('closing server & client', { - _port, - _sockPort, - pid: process.pid - }); - - server.kill(); - sock.close(); - } - }) - ); - }); - }); - - server.stdout.pipe(process.stdout); - server.stderr.pipe(process.stderr); - }); - -test('getPortal', async t => { - const client = await getClient(); - - const res = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups')) - }); - - t.snapshot(JSON.stringify(res.data, null, 2)); - - client.kill(); -}); - -test('getDeploymentGroups', async t => { - const client = await getClient(); - - const res = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-direct')) - }); - - t.snapshot(JSON.stringify(res.data, null, 2)); - - client.kill(); -}); - -test('getDeploymentGroup', async t => { - const client = await getClient(); - - const res = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-group-direct')), - variables: { - id: 'e0ea0c02-55cc-45fe-8064-3e5176a59401' - } - }); - - t.snapshot(JSON.stringify(res.data, null, 2)); - - client.kill(); -}); - -test('getServices', async t => { - const client = await getClient(); - - const res = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('services-direct')) - }); - - t.snapshot(JSON.stringify(res.data, null, 2)); - - client.kill(); -}); - -test('getService', async t => { - const client = await getClient(); - - const res = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('service-direct-filtered')), - variables: { - id: '6d31aff4-de1e-4042-a983-fbd23d5c530c' - } - }); - - t.snapshot(JSON.stringify(res.data, null, 2)); - - client.kill(); -}); - -test('getInstances', async t => { - const client = await getClient(); - - const res = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('instances-direct')) - }); - - t.snapshot(JSON.stringify(res.data, null, 2)); - - client.kill(); -}); - -test('getInstance', async t => { - const client = await getClient(); - - const res = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('instance-direct-filtered')), - variables: { - id: '25f6bc62-63b8-4959-908e-1f6d7ff6341d' - } - }); - - t.snapshot(JSON.stringify(res.data, null, 2)); - - client.kill(); -}); - -test('should return everything', async t => { - const client = await getClient(); - - const res = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('all')) - }); - - t.snapshot(JSON.stringify(res.data, null, 2)); - - client.kill(); -}); - -test('should return only Portal', async t => { - const client = await getClient(); - - const res = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('portal-only')) - }); - - t.snapshot(JSON.stringify(res.data, null, 2)); - - client.kill(); -}); - -test("should return DeploymentGroup's", async t => { - const client = await getClient(); - - const dgs = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups')) - }); - - const dgsDirect = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-direct')) - }); - - t.snapshot(JSON.stringify(dgs.data, null, 2)); - t.snapshot(JSON.stringify(dgsDirect.data, null, 2)); - - client.kill(); -}); - -test("should return filtered DeploymentGroup's", async t => { - const client = await getClient(); - - const dgs = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'wordpress-blog-example' - } - }); - - const dgsDirect = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-direct-filtered')), - variables: { - slug: 'wordpress-blog-example' - } - }); - - t.snapshot(JSON.stringify(dgs.data, null, 2)); - t.snapshot(JSON.stringify(dgsDirect.data, null, 2)); - - client.kill(); -}); - -test('should return services', async t => { - const client = await getClient(); - - const services = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('services')) - }); - - const servicesDirect = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('services-direct')) - }); - - t.snapshot(JSON.stringify(services.data, null, 2)); - t.snapshot(JSON.stringify(servicesDirect.data, null, 2)); - - client.kill(); -}); - -test('should return filtered services', async t => { - const client = await getClient(); - - const services = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('services-filtered')), - variables: { - dgSlug: 'wordpress-blog-example', - sSlug: 'nginx' - } - }); - - const servicesDirect = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('services-direct-filtered')), - variables: { - sSlug: 'nginx' - } - }); - - t.snapshot(JSON.stringify(services.data, null, 2)); - t.snapshot(JSON.stringify(servicesDirect.data, null, 2)); - - client.kill(); -}); - -test('should return instances', async t => { - const client = await getClient(); - - const instances = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('instances')) - }); - - const instancesDirect = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('instances-direct')) - }); - - t.snapshot(JSON.stringify(instances.data, null, 2)); - t.snapshot(JSON.stringify(instancesDirect.data, null, 2)); - - client.kill(); -}); - -test('should return filtered instances', async t => { - const client = await getClient(); - - const instances = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('instances-filtered')), - variables: { - dgSlug: 'cpexample', - sSlug: 'mysql', - iName: 'mysql-2', - biName: 'mysql-1' - } - }); - - const instancesDirect = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('instances-direct-filtered')), - variables: { - dgSlug: 'cpexample', - sSlug: 'mysql', - iName: 'mysql-2', - biName: 'mysql-1' - } - }); - - t.snapshot(JSON.stringify(instances.data, null, 2)); - t.snapshot(JSON.stringify(instancesDirect.data, null, 2)); - - client.kill(); -}); - -test('should create DeploymentGroup', async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test' - } - }); - - const dgs = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups')) - }); - - const dgsDirect = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-direct')) - }); - - const fDgs = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test' - } - }); - - const fDgsDirect = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-direct-filtered')), - variables: { - slug: 'test' - } - }); - - t.snapshot(JSON.stringify(created.data, null, 2)); - t.snapshot(JSON.stringify(dgs.data, null, 2)); - t.snapshot(JSON.stringify(dgsDirect.data, null, 2)); - t.snapshot(JSON.stringify(fDgs.data, null, 2)); - t.snapshot(JSON.stringify(fDgsDirect.data, null, 2)); - - client.kill(); -}); - -test('should provisionManifest', async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test1' - } - }); - - const dgsBeforeProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test1' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - const provisionEvents = await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test1' - } - }); - - t.snapshot(JSON.stringify(dgsBeforeProvision.data, null, 2)); - t.snapshot(JSON.stringify(provisionEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterProvision.data, null, 2)); - - client.kill(); -}); - -test('should delete DeploymentGroup', async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test2' - } - }); - - await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test2' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test2' - } - }); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('delete-deployment-group')), - variables: { - id: created.data.createDeploymentGroup.id - } - }); - - const deleteDgEvents = await listen( - client.sock, - ({ name, payload }) => - name === 'dg-deleted' && payload === created.data.createDeploymentGroup.id - ); - - const dgsAfterDelete = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test2' - } - }); - - t.snapshot(JSON.stringify(dgsAfterProvision.data, null, 2)); - t.snapshot(JSON.stringify(deleteDgEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterDelete.data, null, 2)); - - client.kill(); -}); - -test('should scale up', async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test3' - } - }); - - await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test3' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test3' - } - }); - - const serviceId = - dgsAfterProvision.data.portal.deploymentGroups[0].services[0].id; - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('scale')), - variables: { - serviceId, - replicas: 10 - } - }); - - const scaleEvents = await listen( - client.sock, - ({ name, payload }) => name === 'service-scaled' && payload === serviceId - ); - - const dgsAfterScale = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test3' - } - }); - - t.snapshot(JSON.stringify(dgsAfterProvision.data, null, 2)); - t.snapshot(JSON.stringify(scaleEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterScale.data, null, 2)); - - client.kill(); -}); - -test('should scale down', async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test4' - } - }); - - await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test4' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test4' - } - }); - - const serviceId = - dgsAfterProvision.data.portal.deploymentGroups[0].services[0].id; - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('scale')), - variables: { - serviceId, - replicas: 10 - } - }); - - await listen( - client.sock, - ({ name, payload }) => name === 'service-scaled' && payload === serviceId - ); - - const dgsAfterScaleUp = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test4' - } - }); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('scale')), - variables: { - serviceId, - replicas: 7 - } - }); - - const scaleDownEvents = await listen( - client.sock, - ({ name, payload }) => name === 'service-scaled' && payload === serviceId - ); - - const dgsAfterScaleDown = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test4' - } - }); - - t.snapshot(JSON.stringify(dgsAfterScaleUp.data, null, 2)); - t.snapshot(JSON.stringify(scaleDownEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterScaleDown.data, null, 2)); - - client.kill(); -}); - -test("shouldn't scale", async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test10' - } - }); - - await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test10' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test10' - } - }); - - const serviceId = - dgsAfterProvision.data.portal.deploymentGroups[0].services[0].id; - - const scaleUpVersion = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('scale')), - variables: { - serviceId, - replicas: 10 - } - }); - - await listen( - client.sock, - ({ name, payload }) => name === 'service-scaled' && payload === serviceId - ); - - const dgsAfterScaleUp = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test10' - } - }); - - const scaleEqVersion = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('scale')), - variables: { - serviceId, - replicas: 10 - } - }); - - const dgsAfterScaleEq = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test10' - } - }); - - t.deepEqual(scaleUpVersion.data, scaleEqVersion.data); - t.deepEqual(dgsAfterScaleUp.data, dgsAfterScaleEq.data); - - client.kill(); -}); - -test("should delete Service's", async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test5' - } - }); - - await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test5' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test5' - } - }); - - const serviceIds = dgsAfterProvision.data.portal.deploymentGroups - .filter(({ id }) => id === created.data.createDeploymentGroup.id)[0] - .services.map(({ id }) => id); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('delete-services')), - variables: { - ids: serviceIds - } - }); - - const deleteServicesEvents = await listen( - client.sock, - ({ name, payload }) => - name === 'services-deleted' && - serviceIds.every(id => payload.indexOf(id) >= 0) - ); - - const dgsAfterDelete = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test5' - } - }); - - t.snapshot(JSON.stringify(dgsAfterProvision.data, null, 2)); - t.snapshot(JSON.stringify(deleteServicesEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterDelete.data, null, 2)); - - client.kill(); -}); - -test("shouldn't delete Service's twice", async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test5' - } - }); - - await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test5' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test5' - } - }); - - const serviceIds = dgsAfterProvision.data.portal.deploymentGroups - .filter(({ id }) => id === created.data.createDeploymentGroup.id)[0] - .services.map(({ id }) => id); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('delete-services')), - variables: { - ids: serviceIds - } - }); - - const deleteServicesEvents = await listen( - client.sock, - ({ name, payload }) => - name === 'services-deleted' && - serviceIds.every(id => payload.indexOf(id) >= 0) - ); - - const dgsAfterDelete = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test5' - } - }); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('delete-services')), - variables: { - ids: serviceIds - } - }); - - const deleteServicesAgainEvents = await listen( - client.sock, - ({ name, payload }) => - name === 'services-deleted' && - serviceIds.every(id => payload.indexOf(id) >= 0) - ); - - const dgsAfterDeleteAgain = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test5' - } - }); - - t.snapshot(JSON.stringify(dgsAfterProvision.data, null, 2)); - t.snapshot(JSON.stringify(deleteServicesEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterDelete.data, null, 2)); - t.snapshot(JSON.stringify(deleteServicesAgainEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterDeleteAgain.data, null, 2)); - - client.kill(); -}); - -test("should restart Service's", async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test6' - } - }); - - await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test6' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test6' - } - }); - - const serviceIds = dgsAfterProvision.data.portal.deploymentGroups - .filter(({ id }) => id === created.data.createDeploymentGroup.id)[0] - .services.map(({ id }) => id); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('restart-services')), - variables: { - ids: serviceIds - } - }); - - const restartEvents = await listen( - client.sock, - ({ name, payload }) => - name === 'services-restarted' && - serviceIds.every(id => payload.indexOf(id) >= 0) - ); - - const dgsAfterRestart = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test6' - } - }); - - t.snapshot(JSON.stringify(dgsAfterProvision.data, null, 2)); - t.snapshot(JSON.stringify(restartEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterRestart.data, null, 2)); - - client.kill(); -}); - -test("should stop Service's", async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test7' - } - }); - - await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test7' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test7' - } - }); - - const serviceIds = dgsAfterProvision.data.portal.deploymentGroups - .filter(({ id }) => id === created.data.createDeploymentGroup.id)[0] - .services.map(({ id }) => id); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('stop-services')), - variables: { - ids: serviceIds - } - }); - - const stopEvents = await listen( - client.sock, - ({ name, payload }) => - name === 'services-stopped' && - serviceIds.every(id => payload.indexOf(id) >= 0) - ); - - const dgsAfterStop = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test7' - } - }); - - t.snapshot(JSON.stringify(dgsAfterProvision.data, null, 2)); - t.snapshot(JSON.stringify(stopEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterStop.data, null, 2)); - - client.kill(); -}); - -test("shouldn't stop Service's twice", async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test9' - } - }); - - await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test9' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test9' - } - }); - - const serviceIds = dgsAfterProvision.data.portal.deploymentGroups - .filter(({ id }) => id === created.data.createDeploymentGroup.id)[0] - .services.map(({ id }) => id); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('stop-services')), - variables: { - ids: serviceIds - } - }); - - const stopEventsBefore = await listen( - client.sock, - ({ name, payload }) => - name === 'services-stopped' && - serviceIds.every(id => payload.indexOf(id) >= 0) - ); - - const dgsAfterStop = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test9' - } - }); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('stop-services')), - variables: { - ids: serviceIds - } - }); - - const stopEventsAfter = await listen( - client.sock, - ({ name, payload }) => - name === 'services-stopped' && - serviceIds.every(id => payload.indexOf(id) >= 0) - ); - - const dgsAfterStopAgain = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test9' - } - }); - - t.snapshot(JSON.stringify(dgsAfterProvision.data, null, 2)); - t.snapshot(JSON.stringify(stopEventsBefore, null, 2)); - t.snapshot(JSON.stringify(dgsAfterStop.data, null, 2)); - t.snapshot(JSON.stringify(stopEventsAfter, null, 2)); - t.snapshot(JSON.stringify(dgsAfterStopAgain.data, null, 2)); - - client.kill(); -}); - -test("should start Service's", async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test8' - } - }); - - await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test8' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test8' - } - }); - - const serviceIds = dgsAfterProvision.data.portal.deploymentGroups - .filter(({ id }) => id === created.data.createDeploymentGroup.id)[0] - .services.map(({ id }) => id); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('start-services')), - variables: { - ids: serviceIds - } - }); - - const startEvents = await listen( - client.sock, - ({ name, payload }) => - name === 'services-started' && - serviceIds.every(id => payload.indexOf(id) >= 0) - ); - - const dgsAfterStart = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test8' - } - }); - - t.snapshot(JSON.stringify(dgsAfterProvision.data, null, 2)); - t.snapshot(JSON.stringify(startEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterStart.data, null, 2)); - - client.kill(); -}); - -test("shouldn't start Service's twice", async t => { - const client = await getClient(); - - const created = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('create-deployment-group')), - variables: { - name: 'test10' - } - }); - - await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test10' - } - }); - - const version = await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('provision-manifest')), - variables: { - deploymentGroupId: created.data.createDeploymentGroup.id, - type: 'COMPOSE', - format: 'YAML', - environment: {}, - files: [], - raw: ` - redis: - image: redis:latest - nginx: - image: nginx:latest - ` - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'manifest-provisioned' && - payload === version.data.provisionManifest.id - ); - - const dgsAfterProvision = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test10' - } - }); - - const serviceIds = dgsAfterProvision.data.portal.deploymentGroups - .filter(({ id }) => id === created.data.createDeploymentGroup.id)[0] - .services.map(({ id }) => id); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('stop-services')), - variables: { - ids: serviceIds - } - }); - - await listen( - client.sock, - ({ name, payload }) => - name === 'services-stopped' && - serviceIds.every(id => payload.indexOf(id) >= 0) - ); - - const dgsAfterStop = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test10' - } - }); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('start-services')), - variables: { - ids: serviceIds - } - }); - - const startEvents = await listen( - client.sock, - ({ name, payload }) => - name === 'services-started' && - serviceIds.every(id => payload.indexOf(id) >= 0) - ); - - const dgsAfterStart = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test10' - } - }); - - await client.mutate({ - fetchPolicy: 'network-only', - mutation: gql(await fetchTag('start-services')), - variables: { - ids: serviceIds - } - }); - - const startAgainEvents = await listen( - client.sock, - ({ name, payload }) => - name === 'services-started' && - serviceIds.every(id => payload.indexOf(id) >= 0) - ); - - const dgsAfterStartAgain = await client.query({ - fetchPolicy: 'network-only', - query: gql(await fetchTag('deployment-groups-filtered')), - variables: { - slug: 'test10' - } - }); - - t.snapshot(JSON.stringify(dgsAfterStop.data, null, 2)); - t.snapshot(JSON.stringify(startEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterStart.data, null, 2)); - t.snapshot(JSON.stringify(startAgainEvents, null, 2)); - t.snapshot(JSON.stringify(dgsAfterStartAgain.data, null, 2)); - - client.kill(); -}); diff --git a/packages/cp-gql-mock-server/test/snapshots/index.js.md b/packages/cp-gql-mock-server/test/snapshots/index.js.md deleted file mode 100644 index 6b6d59ee..00000000 --- a/packages/cp-gql-mock-server/test/snapshots/index.js.md +++ /dev/null @@ -1,21674 +0,0 @@ -# Snapshot report for `test/index.js` - -The actual snapshot is saved in `index.js.snap`. - -Generated by [AVA](https://ava.li). - -## getDeploymentGroup - -> Snapshot 1 - - `{␊ - "deploymentGroup": {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "slug": "nginx",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "slug": "wordpress",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "slug": "nfs",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "slug": "memcached",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "slug": "percona",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "slug": "consul",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - }` - -## getDeploymentGroups - -> Snapshot 1 - - `{␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "slug": "nginx",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "slug": "wordpress",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "slug": "nfs",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "slug": "memcached",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "slug": "percona",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "slug": "consul",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ - "slug": "cpexample",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ - "slug": "frontend",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ - "name": "frontend-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ - "name": "frontend-1",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "slug": "mysql",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ - "slug": "producer",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ - "name": "producer-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ - "slug": "api",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ - "name": "api-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ - "name": "consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ - "slug": "complex-microservices",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ - "slug": "accountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ - "name": "instance-AccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ - "name": "instance-AccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ - "name": "instance-AccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ - "slug": "addressservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ - "name": "instance-AddressService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ - "name": "instance-AddressService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ - "name": "instance-AddressService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ - "name": "instance-AddressService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ - "name": "instance-AddressService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ - "slug": "bloomreachservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ - "name": "instance-BloomreachService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ - "name": "instance-BloomreachService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ - "name": "instance-BloomreachService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ - "name": "instance-BloomreachService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ - "slug": "cartservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ - "name": "instance-CartService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ - "name": "instance-CartService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ - "name": "instance-CartService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ - "name": "instance-CartService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ - "name": "instance-CartService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ - "slug": "extra service reported by containerpilot: cartservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ - "slug": "cctokenizationclientservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ - "name": "instance-CCTokenizationClientService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ - "name": "instance-CCTokenizationClientService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ - "name": "instance-CCTokenizationClientService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ - "slug": "checkoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ - "name": "instance-CheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ - "name": "instance-CheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ - "name": "instance-CheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ - "slug": "colorswatchservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ - "name": "instance-ColorSwatchService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ - "name": "instance-ColorSwatchService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ - "name": "instance-ColorSwatchService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ - "name": "instance-ColorSwatchService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ - "name": "instance-ColorSwatchService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "66babdef-4512-456c-8d16-b6223766da01",␊ - "slug": "emailmarketingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ - "name": "instance-EmailMarketingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ - "name": "instance-EmailMarketingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ - "name": "instance-EmailMarketingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ - "slug": "favoriteservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ - "name": "instance-FavoriteService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ - "name": "instance-FavoriteService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ - "name": "instance-FavoriteService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ - "name": "instance-FavoriteService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ - "name": "instance-FavoriteService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ - "slug": "findinstoreservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ - "name": "instance-FindInStoreService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ - "name": "instance-FindInStoreService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ - "name": "instance-FindInStoreService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ - "slug": "fitpredictorservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ - "name": "instance-FitpredictorService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ - "name": "instance-FitpredictorService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ - "name": "instance-FitpredictorService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ - "name": "instance-FitpredictorService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ - "slug": "hidefromcatalogservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ - "name": "instance-HidefromcatalogService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ - "name": "instance-HidefromcatalogService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ - "name": "instance-HidefromcatalogService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ - "name": "instance-HidefromcatalogService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ - "slug": "internationalcheckoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ - "name": "instance-InternationalCheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ - "name": "instance-InternationalCheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ - "name": "instance-InternationalCheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ - "name": "instance-InternationalCheckoutService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ - "name": "instance-InternationalCheckoutService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ - "slug": "internationalposervice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ - "name": "instance-InternationalPOService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ - "name": "instance-InternationalPOService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ - "name": "instance-InternationalPOService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ - "name": "instance-InternationalPOService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ - "slug": "internationalshippingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ - "name": "instance-InternationalShippingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ - "name": "instance-InternationalShippingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ - "name": "instance-InternationalShippingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ - "name": "instance-InternationalShippingService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ - "slug": "inventoryservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ - "name": "instance-InventoryService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ - "name": "instance-InventoryService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ - "name": "instance-InventoryService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ - "name": "instance-InventoryService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ - "slug": "localizationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ - "name": "instance-LocalizationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ - "name": "instance-LocalizationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ - "name": "instance-LocalizationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ - "name": "instance-LocalizationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ - "slug": "moreaccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ - "name": "instance-MoreAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ - "name": "instance-MoreAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ - "name": "instance-MoreAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ - "name": "instance-MoreAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ - "name": "instance-MoreAccountService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ - "slug": "navigationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ - "name": "instance-NavigationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ - "name": "instance-NavigationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ - "name": "instance-NavigationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ - "name": "instance-NavigationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ - "name": "instance-NavigationService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ - "slug": "ordercreationjob",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ - "name": "instance-OrderCreationJob-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ - "name": "instance-OrderCreationJob-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ - "name": "instance-OrderCreationJob-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ - "name": "instance-OrderCreationJob-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ - "name": "instance-OrderCreationJob-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ - "name": "instance-OrderService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ - "slug": "paymentmethodservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ - "name": "instance-PaymentMethodService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ - "name": "instance-PaymentMethodService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ - "name": "instance-PaymentMethodService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ - "name": "instance-PaymentMethodService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ - "name": "instance-PaymentMethodService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ - "slug": "priceservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ - "name": "instance-PriceService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ - "name": "instance-PriceService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ - "name": "instance-PriceService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ - "name": "instance-PriceService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ - "slug": "privatesaleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ - "name": "instance-PrivatesaleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ - "name": "instance-PrivatesaleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ - "name": "instance-PrivatesaleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ - "name": "instance-PrivatesaleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ - "slug": "productarrayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ - "name": "instance-ProductArrayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ - "name": "instance-ProductArrayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ - "name": "instance-ProductArrayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ - "name": "instance-ProductArrayService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ - "name": "instance-ProductArrayService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ - "slug": "productdetailservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ - "name": "instance-ProductDetailService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ - "name": "instance-ProductDetailService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ - "name": "instance-ProductDetailService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ - "name": "instance-ProductDetailService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ - "name": "instance-ProductDetailService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ - "slug": "productservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ - "name": "instance-ProductService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ - "name": "instance-ProductService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ - "name": "instance-ProductService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ - "slug": "profileservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ - "name": "instance-ProfileService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ - "name": "instance-ProfileService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ - "name": "instance-ProfileService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ - "name": "instance-ProfileService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ - "slug": "promoservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ - "name": "instance-PromoService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ - "name": "instance-PromoService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ - "name": "instance-PromoService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ - "slug": "promotionservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ - "name": "instance-PromotionService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ - "name": "instance-PromotionService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ - "name": "instance-PromotionService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ - "name": "instance-PromotionService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ - "name": "instance-PromotionService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ - "slug": "questionanswerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ - "name": "instance-QuestionanswerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ - "name": "instance-QuestionanswerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ - "name": "instance-QuestionanswerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ - "name": "instance-QuestionanswerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ - "slug": "redbaloonservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ - "name": "instance-RedBaloonService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ - "name": "instance-RedBaloonService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ - "name": "instance-RedBaloonService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ - "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ - "slug": "reviewsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ - "name": "instance-ReviewsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ - "name": "instance-ReviewsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ - "name": "instance-ReviewsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ - "name": "instance-ReviewsService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ - "name": "instance-ReviewsService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ - "slug": "searchfacetsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ - "name": "instance-SearchFacetsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ - "name": "instance-SearchFacetsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ - "name": "instance-SearchFacetsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ - "slug": "searchindexservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ - "name": "instance-SearchIndexService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ - "name": "instance-SearchIndexService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ - "name": "instance-SearchIndexService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ - "name": "instance-SearchIndexService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ - "slug": "shoprunnerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ - "name": "instance-ShopRunnerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ - "name": "instance-ShopRunnerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ - "name": "instance-ShopRunnerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ - "name": "instance-ShopRunnerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ - "name": "instance-ShopRunnerService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ - "slug": "taxservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ - "name": "instance-TaxService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ - "name": "instance-TaxService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ - "name": "instance-TaxService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ - "name": "instance-TaxService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ - "name": "instance-TaxService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ - "slug": "toggleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ - "name": "instance-ToggleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ - "name": "instance-ToggleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ - "name": "instance-ToggleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ - "name": "instance-ToggleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ - "slug": "useraccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ - "name": "instance-UserAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ - "name": "instance-UserAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ - "name": "instance-UserAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ - "name": "instance-UserAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ - "slug": "userauthenticationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ - "name": "instance-UserAuthenticationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ - "name": "instance-UserAuthenticationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ - "name": "instance-UserAuthenticationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ - "name": "instance-UserAuthenticationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ - "slug": "waitlistoverlayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ - "name": "instance-WaitlistOverlayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ - "name": "instance-WaitlistOverlayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ - "name": "instance-WaitlistOverlayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ - "slug": "waitlistservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ - "name": "instance-WaitlistService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ - "name": "instance-WaitlistService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ - "name": "instance-WaitlistService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ - "name": "instance-WaitlistService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ - "name": "instance-WaitlistService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ - "name": "instance-Consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ - "name": "instance-Consul-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ - "name": "instance-Consul-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ - "slug": "nginx",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ - "name": "instance-Nginx-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ - "slug": "mongodb",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ - "name": "instance-MongoDB-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ - "name": "instance-MongoDB-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ - "name": "instance-MongoDB-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ]␊ - }` - -## getInstance - -> Snapshot 1 - - `{␊ - "instance": {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - }␊ - }` - -## getInstances - -> Snapshot 1 - - `{␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ - "name": "frontend-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ - "name": "frontend-1",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ - "name": "producer-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ - "name": "api-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ - "name": "consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ - "name": "instance-AccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ - "name": "instance-AccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ - "name": "instance-AccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ - "name": "instance-AddressService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ - "name": "instance-AddressService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ - "name": "instance-AddressService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ - "name": "instance-AddressService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ - "name": "instance-AddressService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ - "name": "instance-BloomreachService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ - "name": "instance-BloomreachService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ - "name": "instance-BloomreachService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ - "name": "instance-BloomreachService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ - "name": "instance-CartService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ - "name": "instance-CartService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ - "name": "instance-CartService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ - "name": "instance-CartService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ - "name": "instance-CartService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ - "name": "instance-CCTokenizationClientService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ - "name": "instance-CCTokenizationClientService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ - "name": "instance-CCTokenizationClientService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ - "name": "instance-CheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ - "name": "instance-CheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ - "name": "instance-CheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ - "name": "instance-ColorSwatchService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ - "name": "instance-ColorSwatchService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ - "name": "instance-ColorSwatchService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ - "name": "instance-ColorSwatchService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ - "name": "instance-ColorSwatchService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ - "name": "instance-EmailMarketingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ - "name": "instance-EmailMarketingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ - "name": "instance-EmailMarketingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ - "name": "instance-FavoriteService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ - "name": "instance-FavoriteService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ - "name": "instance-FavoriteService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ - "name": "instance-FavoriteService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ - "name": "instance-FavoriteService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ - "name": "instance-FindInStoreService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ - "name": "instance-FindInStoreService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ - "name": "instance-FindInStoreService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ - "name": "instance-FitpredictorService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ - "name": "instance-FitpredictorService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ - "name": "instance-FitpredictorService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ - "name": "instance-FitpredictorService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ - "name": "instance-HidefromcatalogService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ - "name": "instance-HidefromcatalogService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ - "name": "instance-HidefromcatalogService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ - "name": "instance-HidefromcatalogService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ - "name": "instance-InternationalCheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ - "name": "instance-InternationalCheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ - "name": "instance-InternationalCheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ - "name": "instance-InternationalCheckoutService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ - "name": "instance-InternationalCheckoutService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ - "name": "instance-InternationalPOService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ - "name": "instance-InternationalPOService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ - "name": "instance-InternationalPOService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ - "name": "instance-InternationalPOService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ - "name": "instance-InternationalShippingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ - "name": "instance-InternationalShippingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ - "name": "instance-InternationalShippingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ - "name": "instance-InternationalShippingService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ - "name": "instance-InventoryService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ - "name": "instance-InventoryService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ - "name": "instance-InventoryService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ - "name": "instance-InventoryService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ - "name": "instance-LocalizationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ - "name": "instance-LocalizationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ - "name": "instance-LocalizationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ - "name": "instance-LocalizationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ - "name": "instance-MoreAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ - "name": "instance-MoreAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ - "name": "instance-MoreAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ - "name": "instance-MoreAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ - "name": "instance-MoreAccountService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ - "name": "instance-NavigationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ - "name": "instance-NavigationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ - "name": "instance-NavigationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ - "name": "instance-NavigationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ - "name": "instance-NavigationService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ - "name": "instance-OrderCreationJob-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ - "name": "instance-OrderCreationJob-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ - "name": "instance-OrderCreationJob-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ - "name": "instance-OrderCreationJob-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ - "name": "instance-OrderCreationJob-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ - "name": "instance-OrderService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ - "name": "instance-PaymentMethodService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ - "name": "instance-PaymentMethodService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ - "name": "instance-PaymentMethodService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ - "name": "instance-PaymentMethodService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ - "name": "instance-PaymentMethodService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ - "name": "instance-PriceService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ - "name": "instance-PriceService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ - "name": "instance-PriceService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ - "name": "instance-PriceService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ - "name": "instance-PrivatesaleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ - "name": "instance-PrivatesaleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ - "name": "instance-PrivatesaleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ - "name": "instance-PrivatesaleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ - "name": "instance-ProductArrayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ - "name": "instance-ProductArrayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ - "name": "instance-ProductArrayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ - "name": "instance-ProductArrayService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ - "name": "instance-ProductArrayService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ - "name": "instance-ProductDetailService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ - "name": "instance-ProductDetailService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ - "name": "instance-ProductDetailService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ - "name": "instance-ProductDetailService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ - "name": "instance-ProductDetailService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ - "name": "instance-ProductService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ - "name": "instance-ProductService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ - "name": "instance-ProductService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ - "name": "instance-ProfileService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ - "name": "instance-ProfileService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ - "name": "instance-ProfileService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ - "name": "instance-ProfileService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ - "name": "instance-PromoService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ - "name": "instance-PromoService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ - "name": "instance-PromoService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ - "name": "instance-PromotionService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ - "name": "instance-PromotionService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ - "name": "instance-PromotionService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ - "name": "instance-PromotionService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ - "name": "instance-PromotionService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ - "name": "instance-QuestionanswerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ - "name": "instance-QuestionanswerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ - "name": "instance-QuestionanswerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ - "name": "instance-QuestionanswerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ - "name": "instance-RedBaloonService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ - "name": "instance-RedBaloonService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ - "name": "instance-RedBaloonService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ - "name": "instance-ReviewsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ - "name": "instance-ReviewsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ - "name": "instance-ReviewsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ - "name": "instance-ReviewsService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ - "name": "instance-ReviewsService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ - "name": "instance-SearchFacetsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ - "name": "instance-SearchFacetsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ - "name": "instance-SearchFacetsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ - "name": "instance-SearchIndexService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ - "name": "instance-SearchIndexService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ - "name": "instance-SearchIndexService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ - "name": "instance-SearchIndexService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ - "name": "instance-ShopRunnerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ - "name": "instance-ShopRunnerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ - "name": "instance-ShopRunnerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ - "name": "instance-ShopRunnerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ - "name": "instance-ShopRunnerService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ - "name": "instance-TaxService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ - "name": "instance-TaxService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ - "name": "instance-TaxService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ - "name": "instance-TaxService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ - "name": "instance-TaxService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ - "name": "instance-ToggleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ - "name": "instance-ToggleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ - "name": "instance-ToggleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ - "name": "instance-ToggleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ - "name": "instance-UserAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ - "name": "instance-UserAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ - "name": "instance-UserAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ - "name": "instance-UserAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ - "name": "instance-UserAuthenticationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ - "name": "instance-UserAuthenticationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ - "name": "instance-UserAuthenticationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ - "name": "instance-UserAuthenticationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ - "name": "instance-WaitlistOverlayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ - "name": "instance-WaitlistOverlayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ - "name": "instance-WaitlistOverlayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ - "name": "instance-WaitlistService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ - "name": "instance-WaitlistService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ - "name": "instance-WaitlistService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ - "name": "instance-WaitlistService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ - "name": "instance-WaitlistService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ - "name": "instance-Consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ - "name": "instance-Consul-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ - "name": "instance-Consul-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ - "name": "instance-Nginx-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ - "name": "instance-MongoDB-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ - "name": "instance-MongoDB-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ - "name": "instance-MongoDB-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ]␊ - }` - -## getPortal - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ - "slug": "cpexample",␊ - "status": "ACTIVE",␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ - "slug": "complex-microservices",␊ - "status": "ACTIVE",␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## getService - -> Snapshot 1 - - `{␊ - "service": {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "slug": "memcached",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - }` - -## getServices - -> Snapshot 1 - - `{␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "slug": "nginx",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "slug": "wordpress",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "slug": "nfs",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "slug": "memcached",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "slug": "percona",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "slug": "consul",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "primary-consul",␊ - "slug": "consul",␊ - "status": null,␊ - "instances": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "primary-nginx",␊ - "slug": "nginx",␊ - "status": null,␊ - "instances": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "primary-mongodb",␊ - "slug": "mongodb",␊ - "status": null,␊ - "instances": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ - "slug": "frontend",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ - "name": "frontend-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ - "name": "frontend-1",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "slug": "mysql",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ - "slug": "producer",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ - "name": "producer-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ - "slug": "api",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ - "name": "api-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ - "name": "consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ - "slug": "accountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ - "name": "instance-AccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ - "name": "instance-AccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ - "name": "instance-AccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ - "slug": "addressservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ - "name": "instance-AddressService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ - "name": "instance-AddressService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ - "name": "instance-AddressService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ - "name": "instance-AddressService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ - "name": "instance-AddressService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ - "slug": "bloomreachservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ - "name": "instance-BloomreachService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ - "name": "instance-BloomreachService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ - "name": "instance-BloomreachService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ - "name": "instance-BloomreachService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ - "slug": "cartservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ - "name": "instance-CartService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ - "name": "instance-CartService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ - "name": "instance-CartService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ - "name": "instance-CartService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ - "name": "instance-CartService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ - "slug": "extra service reported by containerpilot: cartservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ - "slug": "cctokenizationclientservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ - "name": "instance-CCTokenizationClientService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ - "name": "instance-CCTokenizationClientService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ - "name": "instance-CCTokenizationClientService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ - "slug": "checkoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ - "name": "instance-CheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ - "name": "instance-CheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ - "name": "instance-CheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ - "slug": "colorswatchservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ - "name": "instance-ColorSwatchService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ - "name": "instance-ColorSwatchService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ - "name": "instance-ColorSwatchService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ - "name": "instance-ColorSwatchService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ - "name": "instance-ColorSwatchService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "66babdef-4512-456c-8d16-b6223766da01",␊ - "slug": "emailmarketingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ - "name": "instance-EmailMarketingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ - "name": "instance-EmailMarketingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ - "name": "instance-EmailMarketingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ - "slug": "favoriteservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ - "name": "instance-FavoriteService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ - "name": "instance-FavoriteService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ - "name": "instance-FavoriteService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ - "name": "instance-FavoriteService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ - "name": "instance-FavoriteService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ - "slug": "findinstoreservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ - "name": "instance-FindInStoreService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ - "name": "instance-FindInStoreService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ - "name": "instance-FindInStoreService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ - "slug": "fitpredictorservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ - "name": "instance-FitpredictorService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ - "name": "instance-FitpredictorService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ - "name": "instance-FitpredictorService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ - "name": "instance-FitpredictorService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ - "slug": "hidefromcatalogservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ - "name": "instance-HidefromcatalogService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ - "name": "instance-HidefromcatalogService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ - "name": "instance-HidefromcatalogService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ - "name": "instance-HidefromcatalogService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ - "slug": "internationalcheckoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ - "name": "instance-InternationalCheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ - "name": "instance-InternationalCheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ - "name": "instance-InternationalCheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ - "name": "instance-InternationalCheckoutService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ - "name": "instance-InternationalCheckoutService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ - "slug": "internationalposervice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ - "name": "instance-InternationalPOService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ - "name": "instance-InternationalPOService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ - "name": "instance-InternationalPOService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ - "name": "instance-InternationalPOService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ - "slug": "internationalshippingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ - "name": "instance-InternationalShippingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ - "name": "instance-InternationalShippingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ - "name": "instance-InternationalShippingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ - "name": "instance-InternationalShippingService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ - "slug": "inventoryservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ - "name": "instance-InventoryService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ - "name": "instance-InventoryService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ - "name": "instance-InventoryService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ - "name": "instance-InventoryService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ - "slug": "localizationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ - "name": "instance-LocalizationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ - "name": "instance-LocalizationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ - "name": "instance-LocalizationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ - "name": "instance-LocalizationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ - "slug": "moreaccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ - "name": "instance-MoreAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ - "name": "instance-MoreAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ - "name": "instance-MoreAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ - "name": "instance-MoreAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ - "name": "instance-MoreAccountService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ - "slug": "navigationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ - "name": "instance-NavigationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ - "name": "instance-NavigationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ - "name": "instance-NavigationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ - "name": "instance-NavigationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ - "name": "instance-NavigationService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ - "slug": "ordercreationjob",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ - "name": "instance-OrderCreationJob-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ - "name": "instance-OrderCreationJob-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ - "name": "instance-OrderCreationJob-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ - "name": "instance-OrderCreationJob-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ - "name": "instance-OrderCreationJob-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ - "name": "instance-OrderService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ - "slug": "paymentmethodservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ - "name": "instance-PaymentMethodService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ - "name": "instance-PaymentMethodService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ - "name": "instance-PaymentMethodService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ - "name": "instance-PaymentMethodService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ - "name": "instance-PaymentMethodService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ - "slug": "priceservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ - "name": "instance-PriceService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ - "name": "instance-PriceService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ - "name": "instance-PriceService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ - "name": "instance-PriceService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ - "slug": "privatesaleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ - "name": "instance-PrivatesaleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ - "name": "instance-PrivatesaleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ - "name": "instance-PrivatesaleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ - "name": "instance-PrivatesaleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ - "slug": "productarrayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ - "name": "instance-ProductArrayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ - "name": "instance-ProductArrayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ - "name": "instance-ProductArrayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ - "name": "instance-ProductArrayService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ - "name": "instance-ProductArrayService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ - "slug": "productdetailservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ - "name": "instance-ProductDetailService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ - "name": "instance-ProductDetailService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ - "name": "instance-ProductDetailService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ - "name": "instance-ProductDetailService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ - "name": "instance-ProductDetailService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ - "slug": "productservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ - "name": "instance-ProductService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ - "name": "instance-ProductService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ - "name": "instance-ProductService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ - "slug": "profileservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ - "name": "instance-ProfileService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ - "name": "instance-ProfileService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ - "name": "instance-ProfileService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ - "name": "instance-ProfileService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ - "slug": "promoservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ - "name": "instance-PromoService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ - "name": "instance-PromoService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ - "name": "instance-PromoService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ - "slug": "promotionservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ - "name": "instance-PromotionService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ - "name": "instance-PromotionService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ - "name": "instance-PromotionService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ - "name": "instance-PromotionService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ - "name": "instance-PromotionService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ - "slug": "questionanswerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ - "name": "instance-QuestionanswerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ - "name": "instance-QuestionanswerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ - "name": "instance-QuestionanswerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ - "name": "instance-QuestionanswerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ - "slug": "redbaloonservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ - "name": "instance-RedBaloonService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ - "name": "instance-RedBaloonService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ - "name": "instance-RedBaloonService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ - "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ - "slug": "reviewsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ - "name": "instance-ReviewsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ - "name": "instance-ReviewsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ - "name": "instance-ReviewsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ - "name": "instance-ReviewsService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ - "name": "instance-ReviewsService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ - "slug": "searchfacetsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ - "name": "instance-SearchFacetsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ - "name": "instance-SearchFacetsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ - "name": "instance-SearchFacetsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ - "slug": "searchindexservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ - "name": "instance-SearchIndexService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ - "name": "instance-SearchIndexService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ - "name": "instance-SearchIndexService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ - "name": "instance-SearchIndexService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ - "slug": "shoprunnerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ - "name": "instance-ShopRunnerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ - "name": "instance-ShopRunnerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ - "name": "instance-ShopRunnerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ - "name": "instance-ShopRunnerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ - "name": "instance-ShopRunnerService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ - "slug": "taxservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ - "name": "instance-TaxService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ - "name": "instance-TaxService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ - "name": "instance-TaxService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ - "name": "instance-TaxService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ - "name": "instance-TaxService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ - "slug": "toggleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ - "name": "instance-ToggleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ - "name": "instance-ToggleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ - "name": "instance-ToggleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ - "name": "instance-ToggleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ - "slug": "useraccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ - "name": "instance-UserAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ - "name": "instance-UserAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ - "name": "instance-UserAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ - "name": "instance-UserAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ - "slug": "userauthenticationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ - "name": "instance-UserAuthenticationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ - "name": "instance-UserAuthenticationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ - "name": "instance-UserAuthenticationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ - "name": "instance-UserAuthenticationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ - "slug": "waitlistoverlayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ - "name": "instance-WaitlistOverlayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ - "name": "instance-WaitlistOverlayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ - "name": "instance-WaitlistOverlayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ - "slug": "waitlistservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ - "name": "instance-WaitlistService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ - "name": "instance-WaitlistService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ - "name": "instance-WaitlistService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ - "name": "instance-WaitlistService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ - "name": "instance-WaitlistService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ - "name": "instance-Consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ - "name": "instance-Consul-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ - "name": "instance-Consul-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ - "slug": "nginx",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ - "name": "instance-Nginx-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ - "slug": "mongodb",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ - "name": "instance-MongoDB-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ - "name": "instance-MongoDB-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ - "name": "instance-MongoDB-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ]␊ - }` - -## should create DeploymentGroup - -> Snapshot 1 - - `{␊ - "createDeploymentGroup": {␊ - "id": "4b521e6902b981f55c89b914e637ecee239ba28ae4fa24f672dd9d40af65e5e0991cffee6e0b317cc8da978e90aec2400c57158d7ebd3b34f5e6c644d7815011",␊ - "name": "test",␊ - "slug": "test",␊ - "status": "ACTIVE",␊ - "services": null,␊ - "version": null,␊ - "history": null,␊ - "imported": null,␊ - "__typename": "DeploymentGroup"␊ - }␊ - }` - -> Snapshot 2 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ - "slug": "cpexample",␊ - "status": "ACTIVE",␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ - "slug": "complex-microservices",␊ - "status": "ACTIVE",␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "4b521e6902b981f55c89b914e637ecee239ba28ae4fa24f672dd9d40af65e5e0991cffee6e0b317cc8da978e90aec2400c57158d7ebd3b34f5e6c644d7815011",␊ - "slug": "test",␊ - "status": "ACTIVE",␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 3 - - `{␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "slug": "nginx",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "slug": "wordpress",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "slug": "nfs",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "slug": "memcached",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "slug": "percona",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "slug": "consul",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ - "slug": "cpexample",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ - "slug": "frontend",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ - "name": "frontend-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ - "name": "frontend-1",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "slug": "mysql",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ - "slug": "producer",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ - "name": "producer-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ - "slug": "api",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ - "name": "api-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ - "name": "consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ - "slug": "complex-microservices",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ - "slug": "accountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ - "name": "instance-AccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ - "name": "instance-AccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ - "name": "instance-AccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ - "slug": "addressservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ - "name": "instance-AddressService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ - "name": "instance-AddressService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ - "name": "instance-AddressService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ - "name": "instance-AddressService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ - "name": "instance-AddressService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ - "slug": "bloomreachservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ - "name": "instance-BloomreachService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ - "name": "instance-BloomreachService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ - "name": "instance-BloomreachService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ - "name": "instance-BloomreachService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ - "slug": "cartservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ - "name": "instance-CartService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ - "name": "instance-CartService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ - "name": "instance-CartService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ - "name": "instance-CartService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ - "name": "instance-CartService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ - "slug": "extra service reported by containerpilot: cartservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ - "slug": "cctokenizationclientservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ - "name": "instance-CCTokenizationClientService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ - "name": "instance-CCTokenizationClientService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ - "name": "instance-CCTokenizationClientService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ - "slug": "checkoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ - "name": "instance-CheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ - "name": "instance-CheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ - "name": "instance-CheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ - "slug": "colorswatchservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ - "name": "instance-ColorSwatchService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ - "name": "instance-ColorSwatchService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ - "name": "instance-ColorSwatchService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ - "name": "instance-ColorSwatchService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ - "name": "instance-ColorSwatchService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "66babdef-4512-456c-8d16-b6223766da01",␊ - "slug": "emailmarketingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ - "name": "instance-EmailMarketingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ - "name": "instance-EmailMarketingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ - "name": "instance-EmailMarketingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ - "slug": "favoriteservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ - "name": "instance-FavoriteService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ - "name": "instance-FavoriteService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ - "name": "instance-FavoriteService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ - "name": "instance-FavoriteService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ - "name": "instance-FavoriteService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ - "slug": "findinstoreservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ - "name": "instance-FindInStoreService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ - "name": "instance-FindInStoreService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ - "name": "instance-FindInStoreService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ - "slug": "fitpredictorservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ - "name": "instance-FitpredictorService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ - "name": "instance-FitpredictorService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ - "name": "instance-FitpredictorService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ - "name": "instance-FitpredictorService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ - "slug": "hidefromcatalogservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ - "name": "instance-HidefromcatalogService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ - "name": "instance-HidefromcatalogService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ - "name": "instance-HidefromcatalogService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ - "name": "instance-HidefromcatalogService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ - "slug": "internationalcheckoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ - "name": "instance-InternationalCheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ - "name": "instance-InternationalCheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ - "name": "instance-InternationalCheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ - "name": "instance-InternationalCheckoutService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ - "name": "instance-InternationalCheckoutService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ - "slug": "internationalposervice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ - "name": "instance-InternationalPOService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ - "name": "instance-InternationalPOService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ - "name": "instance-InternationalPOService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ - "name": "instance-InternationalPOService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ - "slug": "internationalshippingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ - "name": "instance-InternationalShippingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ - "name": "instance-InternationalShippingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ - "name": "instance-InternationalShippingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ - "name": "instance-InternationalShippingService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ - "slug": "inventoryservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ - "name": "instance-InventoryService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ - "name": "instance-InventoryService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ - "name": "instance-InventoryService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ - "name": "instance-InventoryService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ - "slug": "localizationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ - "name": "instance-LocalizationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ - "name": "instance-LocalizationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ - "name": "instance-LocalizationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ - "name": "instance-LocalizationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ - "slug": "moreaccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ - "name": "instance-MoreAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ - "name": "instance-MoreAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ - "name": "instance-MoreAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ - "name": "instance-MoreAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ - "name": "instance-MoreAccountService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ - "slug": "navigationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ - "name": "instance-NavigationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ - "name": "instance-NavigationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ - "name": "instance-NavigationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ - "name": "instance-NavigationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ - "name": "instance-NavigationService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ - "slug": "ordercreationjob",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ - "name": "instance-OrderCreationJob-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ - "name": "instance-OrderCreationJob-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ - "name": "instance-OrderCreationJob-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ - "name": "instance-OrderCreationJob-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ - "name": "instance-OrderCreationJob-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ - "name": "instance-OrderService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ - "slug": "paymentmethodservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ - "name": "instance-PaymentMethodService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ - "name": "instance-PaymentMethodService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ - "name": "instance-PaymentMethodService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ - "name": "instance-PaymentMethodService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ - "name": "instance-PaymentMethodService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ - "slug": "priceservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ - "name": "instance-PriceService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ - "name": "instance-PriceService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ - "name": "instance-PriceService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ - "name": "instance-PriceService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ - "slug": "privatesaleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ - "name": "instance-PrivatesaleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ - "name": "instance-PrivatesaleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ - "name": "instance-PrivatesaleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ - "name": "instance-PrivatesaleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ - "slug": "productarrayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ - "name": "instance-ProductArrayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ - "name": "instance-ProductArrayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ - "name": "instance-ProductArrayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ - "name": "instance-ProductArrayService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ - "name": "instance-ProductArrayService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ - "slug": "productdetailservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ - "name": "instance-ProductDetailService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ - "name": "instance-ProductDetailService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ - "name": "instance-ProductDetailService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ - "name": "instance-ProductDetailService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ - "name": "instance-ProductDetailService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ - "slug": "productservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ - "name": "instance-ProductService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ - "name": "instance-ProductService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ - "name": "instance-ProductService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ - "slug": "profileservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ - "name": "instance-ProfileService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ - "name": "instance-ProfileService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ - "name": "instance-ProfileService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ - "name": "instance-ProfileService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ - "slug": "promoservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ - "name": "instance-PromoService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ - "name": "instance-PromoService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ - "name": "instance-PromoService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ - "slug": "promotionservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ - "name": "instance-PromotionService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ - "name": "instance-PromotionService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ - "name": "instance-PromotionService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ - "name": "instance-PromotionService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ - "name": "instance-PromotionService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ - "slug": "questionanswerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ - "name": "instance-QuestionanswerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ - "name": "instance-QuestionanswerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ - "name": "instance-QuestionanswerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ - "name": "instance-QuestionanswerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ - "slug": "redbaloonservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ - "name": "instance-RedBaloonService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ - "name": "instance-RedBaloonService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ - "name": "instance-RedBaloonService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ - "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ - "slug": "reviewsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ - "name": "instance-ReviewsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ - "name": "instance-ReviewsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ - "name": "instance-ReviewsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ - "name": "instance-ReviewsService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ - "name": "instance-ReviewsService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ - "slug": "searchfacetsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ - "name": "instance-SearchFacetsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ - "name": "instance-SearchFacetsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ - "name": "instance-SearchFacetsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ - "slug": "searchindexservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ - "name": "instance-SearchIndexService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ - "name": "instance-SearchIndexService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ - "name": "instance-SearchIndexService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ - "name": "instance-SearchIndexService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ - "slug": "shoprunnerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ - "name": "instance-ShopRunnerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ - "name": "instance-ShopRunnerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ - "name": "instance-ShopRunnerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ - "name": "instance-ShopRunnerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ - "name": "instance-ShopRunnerService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ - "slug": "taxservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ - "name": "instance-TaxService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ - "name": "instance-TaxService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ - "name": "instance-TaxService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ - "name": "instance-TaxService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ - "name": "instance-TaxService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ - "slug": "toggleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ - "name": "instance-ToggleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ - "name": "instance-ToggleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ - "name": "instance-ToggleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ - "name": "instance-ToggleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ - "slug": "useraccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ - "name": "instance-UserAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ - "name": "instance-UserAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ - "name": "instance-UserAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ - "name": "instance-UserAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ - "slug": "userauthenticationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ - "name": "instance-UserAuthenticationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ - "name": "instance-UserAuthenticationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ - "name": "instance-UserAuthenticationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ - "name": "instance-UserAuthenticationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ - "slug": "waitlistoverlayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ - "name": "instance-WaitlistOverlayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ - "name": "instance-WaitlistOverlayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ - "name": "instance-WaitlistOverlayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ - "slug": "waitlistservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ - "name": "instance-WaitlistService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ - "name": "instance-WaitlistService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ - "name": "instance-WaitlistService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ - "name": "instance-WaitlistService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ - "name": "instance-WaitlistService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ - "name": "instance-Consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ - "name": "instance-Consul-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ - "name": "instance-Consul-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ - "slug": "nginx",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ - "name": "instance-Nginx-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ - "slug": "mongodb",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ - "name": "instance-MongoDB-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ - "name": "instance-MongoDB-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ - "name": "instance-MongoDB-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "4b521e6902b981f55c89b914e637ecee239ba28ae4fa24f672dd9d40af65e5e0991cffee6e0b317cc8da978e90aec2400c57158d7ebd3b34f5e6c644d7815011",␊ - "slug": "test",␊ - "status": "ACTIVE",␊ - "services": [],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ]␊ - }` - -> Snapshot 4 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "4b521e6902b981f55c89b914e637ecee239ba28ae4fa24f672dd9d40af65e5e0991cffee6e0b317cc8da978e90aec2400c57158d7ebd3b34f5e6c644d7815011",␊ - "name": "test",␊ - "slug": "test",␊ - "status": "ACTIVE",␊ - "services": [],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 5 - - `{␊ - "deploymentGroups": [␊ - {␊ - "id": "4b521e6902b981f55c89b914e637ecee239ba28ae4fa24f672dd9d40af65e5e0991cffee6e0b317cc8da978e90aec2400c57158d7ebd3b34f5e6c644d7815011",␊ - "name": "test",␊ - "slug": "test",␊ - "status": "ACTIVE",␊ - "services": [],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ]␊ - }` - -## should delete DeploymentGroup - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "c36561211b553e0a19374bdef2a9789a2cb2bb9cbd03db638a1ac8e7ae2f180341ad53b1abd027d39a1f29e2f7b499f4a051f76df29bd30c18dee756d65b8c2e",␊ - "name": "test2",␊ - "slug": "test2",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "6a79e8243b9d79cde590624facda46342865423bdd8a18fa4f3ce0ddc685451dba351d7a733c3fce5e38593af11c013f6a6379134c58be30b451ff7e963a01fd",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "7a15a91f43f5747a5ae150c4e4175452807a872bef07703a57670aa5406e0dbdc4d60d692e886ffe140380de70bef4de16677145811c20ca6c06a7021eeecd1b",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "09fa9abbd535a26f65d3852cafa3e019896d8e00f2c3d30f95965b6c775cd22b4aab5b10e8bbc41326b09d2fbc1265f8665e439fea3de64f781324ab8538d3c6",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "01068a27363f7173f2c4bcc2642641ccb410a85db550f7480997f4bddfb19840e9db09c93f65a7f0ee6758b733d4c300736f8e3d6fd1f6ab0f69fc9b5dfe1920",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `[␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "DELETING"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "7a15a91f43f5747a5ae150c4e4175452807a872bef07703a57670aa5406e0dbdc4d60d692e886ffe140380de70bef4de16677145811c20ca6c06a7021eeecd1b"␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "DELETED"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-deleted",␊ - "payload": "7a15a91f43f5747a5ae150c4e4175452807a872bef07703a57670aa5406e0dbdc4d60d692e886ffe140380de70bef4de16677145811c20ca6c06a7021eeecd1b"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "DELETING",␊ - "after": "DELETED"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "service-deleted",␊ - "payload": "6a79e8243b9d79cde590624facda46342865423bdd8a18fa4f3ce0ddc685451dba351d7a733c3fce5e38593af11c013f6a6379134c58be30b451ff7e963a01fd"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "DELETING"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "01068a27363f7173f2c4bcc2642641ccb410a85db550f7480997f4bddfb19840e9db09c93f65a7f0ee6758b733d4c300736f8e3d6fd1f6ab0f69fc9b5dfe1920"␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "DELETED"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-deleted",␊ - "payload": "01068a27363f7173f2c4bcc2642641ccb410a85db550f7480997f4bddfb19840e9db09c93f65a7f0ee6758b733d4c300736f8e3d6fd1f6ab0f69fc9b5dfe1920"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "DELETING",␊ - "after": "DELETED"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "service-deleted",␊ - "payload": "09fa9abbd535a26f65d3852cafa3e019896d8e00f2c3d30f95965b6c775cd22b4aab5b10e8bbc41326b09d2fbc1265f8665e439fea3de64f781324ab8538d3c6"␊ - },␊ - {␊ - "name": "dg-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "DELETING",␊ - "after": "DELETED"␊ - }␊ - },␊ - "slug": "test2"␊ - }␊ - },␊ - {␊ - "name": "dg-deleted",␊ - "payload": "c36561211b553e0a19374bdef2a9789a2cb2bb9cbd03db638a1ac8e7ae2f180341ad53b1abd027d39a1f29e2f7b499f4a051f76df29bd30c18dee756d65b8c2e"␊ - }␊ - ]` - -> Snapshot 3 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "c36561211b553e0a19374bdef2a9789a2cb2bb9cbd03db638a1ac8e7ae2f180341ad53b1abd027d39a1f29e2f7b499f4a051f76df29bd30c18dee756d65b8c2e",␊ - "name": "test2",␊ - "slug": "test2",␊ - "status": "DELETED",␊ - "services": [␊ - {␊ - "id": "6a79e8243b9d79cde590624facda46342865423bdd8a18fa4f3ce0ddc685451dba351d7a733c3fce5e38593af11c013f6a6379134c58be30b451ff7e963a01fd",␊ - "name": "redis",␊ - "status": "DELETED",␊ - "slug": "redis",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "09fa9abbd535a26f65d3852cafa3e019896d8e00f2c3d30f95965b6c775cd22b4aab5b10e8bbc41326b09d2fbc1265f8665e439fea3de64f781324ab8538d3c6",␊ - "name": "nginx",␊ - "status": "DELETED",␊ - "slug": "nginx",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## should delete Service's - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "35deb8bfefda461de237a7849ab878ee4cc7b05c5d45a19523dd0db0d036d344240d6e5c27fd5d38887c6f0a2a65bf0445fcbdd9e6df211eb91dc050992e74b7",␊ - "name": "test5",␊ - "slug": "test5",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "cf1ee0f30a7e6e78aeef2023e3fe28c729630121a0691443627e11fbaf12a6fcfb7b4be71f8dcc921c845c5c50583ca9c24a4824e89f3b4de1eacec826e907ef",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "89adb81c93603ffb202ba3f34b638f1db9b0849e407827f085bd89f6baa00dfc9b5b6474c4034caa0e90b3545f9cc1afa71fe079e0f171e053c1c5006ec76c0f",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "f6e48094c0acac8087fc12e2a32d40e55b46247ecbce52029a29094d958af7e2b936a9acfb94ebf3d25c6197681cff7038e9e82ddcc03e31b7b49ebcd3a14674",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `[␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "DELETING"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "cf1ee0f30a7e6e78aeef2023e3fe28c729630121a0691443627e11fbaf12a6fcfb7b4be71f8dcc921c845c5c50583ca9c24a4824e89f3b4de1eacec826e907ef"␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "DELETED"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-deleted",␊ - "payload": "cf1ee0f30a7e6e78aeef2023e3fe28c729630121a0691443627e11fbaf12a6fcfb7b4be71f8dcc921c845c5c50583ca9c24a4824e89f3b4de1eacec826e907ef"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "DELETING",␊ - "after": "DELETED"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "service-deleted",␊ - "payload": "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "DELETING"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "f6e48094c0acac8087fc12e2a32d40e55b46247ecbce52029a29094d958af7e2b936a9acfb94ebf3d25c6197681cff7038e9e82ddcc03e31b7b49ebcd3a14674"␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "DELETED"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-deleted",␊ - "payload": "f6e48094c0acac8087fc12e2a32d40e55b46247ecbce52029a29094d958af7e2b936a9acfb94ebf3d25c6197681cff7038e9e82ddcc03e31b7b49ebcd3a14674"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "DELETING",␊ - "after": "DELETED"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "service-deleted",␊ - "payload": "89adb81c93603ffb202ba3f34b638f1db9b0849e407827f085bd89f6baa00dfc9b5b6474c4034caa0e90b3545f9cc1afa71fe079e0f171e053c1c5006ec76c0f"␊ - },␊ - {␊ - "name": "services-deleted",␊ - "payload": [␊ - "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5",␊ - "89adb81c93603ffb202ba3f34b638f1db9b0849e407827f085bd89f6baa00dfc9b5b6474c4034caa0e90b3545f9cc1afa71fe079e0f171e053c1c5006ec76c0f"␊ - ]␊ - }␊ - ]` - -> Snapshot 3 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "35deb8bfefda461de237a7849ab878ee4cc7b05c5d45a19523dd0db0d036d344240d6e5c27fd5d38887c6f0a2a65bf0445fcbdd9e6df211eb91dc050992e74b7",␊ - "name": "test5",␊ - "slug": "test5",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5",␊ - "name": "redis",␊ - "status": "DELETED",␊ - "slug": "redis",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "89adb81c93603ffb202ba3f34b638f1db9b0849e407827f085bd89f6baa00dfc9b5b6474c4034caa0e90b3545f9cc1afa71fe079e0f171e053c1c5006ec76c0f",␊ - "name": "nginx",␊ - "status": "DELETED",␊ - "slug": "nginx",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## should provisionManifest - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ - "name": "test1",␊ - "slug": "test1",␊ - "status": "ACTIVE",␊ - "services": [],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `[␊ - {␊ - "name": "service-created",␊ - "payload": {␊ - "deploymentGroupId": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ - "slug": "redis",␊ - "name": "redis",␊ - "id": "f20c0f862a1c614065ce3f28ca29843f910b3fcd8cbb0873131f211b1e0265e7718c35b76928ab1b2785ef808e1edeef58d4635cb6742e65d63abc6208d50137",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "service-created",␊ - "payload": {␊ - "deploymentGroupId": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ - "slug": "nginx",␊ - "name": "nginx",␊ - "id": "9fe7f0f0aef5ecb930866ce44e273d9e0a583e65b898d88cd9108dbd57f0f591719559ebae7d1a006a00780eaf5f16fec568d998ca4f2d17277a5ebaa6c99596",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "dg-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "ACTIVE"␊ - }␊ - },␊ - "slug": "test1"␊ - }␊ - },␊ - {␊ - "name": "instance-created",␊ - "payload": {␊ - "name": "redis_1",␊ - "deploymentGroupId": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ - "serviceId": "f20c0f862a1c614065ce3f28ca29843f910b3fcd8cbb0873131f211b1e0265e7718c35b76928ab1b2785ef808e1edeef58d4635cb6742e65d63abc6208d50137",␊ - "id": "6a2a9dba3ee4e20fd0e273131be7662ba28ef810100c685aab3d6522d3edac733360cac37e05e383912308b5f43d1cf465b26d6a80e717337b98a653a3bf9b7d",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-provisioned",␊ - "payload": "6a2a9dba3ee4e20fd0e273131be7662ba28ef810100c685aab3d6522d3edac733360cac37e05e383912308b5f43d1cf465b26d6a80e717337b98a653a3bf9b7d"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "ACTIVE"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "instance-created",␊ - "payload": {␊ - "name": "nginx_1",␊ - "deploymentGroupId": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ - "serviceId": "9fe7f0f0aef5ecb930866ce44e273d9e0a583e65b898d88cd9108dbd57f0f591719559ebae7d1a006a00780eaf5f16fec568d998ca4f2d17277a5ebaa6c99596",␊ - "id": "8f2ba71986625d4ef4cf1b8afb3ad1adfab00862ff68405bb91c63551a2d2b6562a773a5b02098b01fb7070667d5ec2cc7753a6219aef8cb18ee422dea396082",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-provisioned",␊ - "payload": "8f2ba71986625d4ef4cf1b8afb3ad1adfab00862ff68405bb91c63551a2d2b6562a773a5b02098b01fb7070667d5ec2cc7753a6219aef8cb18ee422dea396082"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "ACTIVE"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "manifest-provisioned",␊ - "payload": "c19aa2bb4d5c55a74fc818bbc0056df51c2d822efeb9e1e9b8b570b6d62aaeab16e15ddd87b345b1f426a67da653c917e7881e13c2c3e7ce3abb28110d664e13"␊ - }␊ - ]` - -> Snapshot 3 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ - "name": "test1",␊ - "slug": "test1",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "f20c0f862a1c614065ce3f28ca29843f910b3fcd8cbb0873131f211b1e0265e7718c35b76928ab1b2785ef808e1edeef58d4635cb6742e65d63abc6208d50137",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "6a2a9dba3ee4e20fd0e273131be7662ba28ef810100c685aab3d6522d3edac733360cac37e05e383912308b5f43d1cf465b26d6a80e717337b98a653a3bf9b7d",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "9fe7f0f0aef5ecb930866ce44e273d9e0a583e65b898d88cd9108dbd57f0f591719559ebae7d1a006a00780eaf5f16fec568d998ca4f2d17277a5ebaa6c99596",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "8f2ba71986625d4ef4cf1b8afb3ad1adfab00862ff68405bb91c63551a2d2b6562a773a5b02098b01fb7070667d5ec2cc7753a6219aef8cb18ee422dea396082",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## should restart Service's - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "cbea5bc65f7636a7b6d7628d1999c1eb387fe71f1b9dcdafefffcfa15895279fb2b3c916b6521326043897891ac351e54a87ad7895f351d86f6a893cab682ff7",␊ - "name": "test6",␊ - "slug": "test6",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "e75721979b2119b961dab67e5a1077ec0b8027b3bc30e07a0122b65361ddad4d2f9e66e7ee2715b5aa9ee29e708066ef021a9a0efa392c4ed15cd18a3b34451a",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "2cfc00b282f5f31936a6bb5a1ed85bfbad3027cb99c70276808682994ea4c43df88f56428946cb4649b00c46ba13dc1d305a4381a867f873007d073e3237892c",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "9897af2a89546fa7d84c0eb4de92f31da368ebee01c8fd5dc81bce7af25f0b84f29ef121e6ac29335a8add827e2123950fe33a87aae5f6ac03b3bf271d05b213",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "072298b9cf12f1f5cf50b58ad24a4c1029ed0c63a8f158110adb08299a97d5776fdc022650088d51dc35559a03f4f310248a6a3b69e8b0efd1189e1c71c50a00",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `[␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "RESTARTING"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "2cfc00b282f5f31936a6bb5a1ed85bfbad3027cb99c70276808682994ea4c43df88f56428946cb4649b00c46ba13dc1d305a4381a867f873007d073e3237892c"␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-started",␊ - "payload": "2cfc00b282f5f31936a6bb5a1ed85bfbad3027cb99c70276808682994ea4c43df88f56428946cb4649b00c46ba13dc1d305a4381a867f873007d073e3237892c"␊ - },␊ - {␊ - "name": "instance-restarted",␊ - "payload": "2cfc00b282f5f31936a6bb5a1ed85bfbad3027cb99c70276808682994ea4c43df88f56428946cb4649b00c46ba13dc1d305a4381a867f873007d073e3237892c"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RESTARTING",␊ - "after": "ACTIVE"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "service-restarted",␊ - "payload": "e75721979b2119b961dab67e5a1077ec0b8027b3bc30e07a0122b65361ddad4d2f9e66e7ee2715b5aa9ee29e708066ef021a9a0efa392c4ed15cd18a3b34451a"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "RESTARTING"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "072298b9cf12f1f5cf50b58ad24a4c1029ed0c63a8f158110adb08299a97d5776fdc022650088d51dc35559a03f4f310248a6a3b69e8b0efd1189e1c71c50a00"␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-started",␊ - "payload": "072298b9cf12f1f5cf50b58ad24a4c1029ed0c63a8f158110adb08299a97d5776fdc022650088d51dc35559a03f4f310248a6a3b69e8b0efd1189e1c71c50a00"␊ - },␊ - {␊ - "name": "instance-restarted",␊ - "payload": "072298b9cf12f1f5cf50b58ad24a4c1029ed0c63a8f158110adb08299a97d5776fdc022650088d51dc35559a03f4f310248a6a3b69e8b0efd1189e1c71c50a00"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RESTARTING",␊ - "after": "ACTIVE"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "service-restarted",␊ - "payload": "9897af2a89546fa7d84c0eb4de92f31da368ebee01c8fd5dc81bce7af25f0b84f29ef121e6ac29335a8add827e2123950fe33a87aae5f6ac03b3bf271d05b213"␊ - },␊ - {␊ - "name": "services-restarted",␊ - "payload": [␊ - "e75721979b2119b961dab67e5a1077ec0b8027b3bc30e07a0122b65361ddad4d2f9e66e7ee2715b5aa9ee29e708066ef021a9a0efa392c4ed15cd18a3b34451a",␊ - "9897af2a89546fa7d84c0eb4de92f31da368ebee01c8fd5dc81bce7af25f0b84f29ef121e6ac29335a8add827e2123950fe33a87aae5f6ac03b3bf271d05b213"␊ - ]␊ - }␊ - ]` - -> Snapshot 3 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "cbea5bc65f7636a7b6d7628d1999c1eb387fe71f1b9dcdafefffcfa15895279fb2b3c916b6521326043897891ac351e54a87ad7895f351d86f6a893cab682ff7",␊ - "name": "test6",␊ - "slug": "test6",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "e75721979b2119b961dab67e5a1077ec0b8027b3bc30e07a0122b65361ddad4d2f9e66e7ee2715b5aa9ee29e708066ef021a9a0efa392c4ed15cd18a3b34451a",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "2cfc00b282f5f31936a6bb5a1ed85bfbad3027cb99c70276808682994ea4c43df88f56428946cb4649b00c46ba13dc1d305a4381a867f873007d073e3237892c",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "9897af2a89546fa7d84c0eb4de92f31da368ebee01c8fd5dc81bce7af25f0b84f29ef121e6ac29335a8add827e2123950fe33a87aae5f6ac03b3bf271d05b213",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "072298b9cf12f1f5cf50b58ad24a4c1029ed0c63a8f158110adb08299a97d5776fdc022650088d51dc35559a03f4f310248a6a3b69e8b0efd1189e1c71c50a00",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## should return DeploymentGroup's - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ - "slug": "cpexample",␊ - "status": "ACTIVE",␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ - "slug": "complex-microservices",␊ - "status": "ACTIVE",␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `{␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "slug": "nginx",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "slug": "wordpress",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "slug": "nfs",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "slug": "memcached",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "slug": "percona",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "slug": "consul",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ - "slug": "cpexample",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ - "slug": "frontend",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ - "name": "frontend-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ - "name": "frontend-1",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "slug": "mysql",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ - "slug": "producer",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ - "name": "producer-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ - "slug": "api",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ - "name": "api-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ - "name": "consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ - "slug": "complex-microservices",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ - "slug": "accountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ - "name": "instance-AccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ - "name": "instance-AccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ - "name": "instance-AccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ - "slug": "addressservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ - "name": "instance-AddressService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ - "name": "instance-AddressService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ - "name": "instance-AddressService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ - "name": "instance-AddressService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ - "name": "instance-AddressService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ - "slug": "bloomreachservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ - "name": "instance-BloomreachService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ - "name": "instance-BloomreachService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ - "name": "instance-BloomreachService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ - "name": "instance-BloomreachService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ - "slug": "cartservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ - "name": "instance-CartService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ - "name": "instance-CartService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ - "name": "instance-CartService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ - "name": "instance-CartService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ - "name": "instance-CartService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ - "slug": "extra service reported by containerpilot: cartservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ - "slug": "cctokenizationclientservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ - "name": "instance-CCTokenizationClientService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ - "name": "instance-CCTokenizationClientService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ - "name": "instance-CCTokenizationClientService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ - "slug": "checkoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ - "name": "instance-CheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ - "name": "instance-CheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ - "name": "instance-CheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ - "slug": "colorswatchservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ - "name": "instance-ColorSwatchService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ - "name": "instance-ColorSwatchService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ - "name": "instance-ColorSwatchService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ - "name": "instance-ColorSwatchService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ - "name": "instance-ColorSwatchService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "66babdef-4512-456c-8d16-b6223766da01",␊ - "slug": "emailmarketingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ - "name": "instance-EmailMarketingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ - "name": "instance-EmailMarketingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ - "name": "instance-EmailMarketingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ - "slug": "favoriteservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ - "name": "instance-FavoriteService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ - "name": "instance-FavoriteService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ - "name": "instance-FavoriteService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ - "name": "instance-FavoriteService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ - "name": "instance-FavoriteService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ - "slug": "findinstoreservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ - "name": "instance-FindInStoreService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ - "name": "instance-FindInStoreService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ - "name": "instance-FindInStoreService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ - "slug": "fitpredictorservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ - "name": "instance-FitpredictorService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ - "name": "instance-FitpredictorService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ - "name": "instance-FitpredictorService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ - "name": "instance-FitpredictorService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ - "slug": "hidefromcatalogservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ - "name": "instance-HidefromcatalogService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ - "name": "instance-HidefromcatalogService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ - "name": "instance-HidefromcatalogService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ - "name": "instance-HidefromcatalogService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ - "slug": "internationalcheckoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ - "name": "instance-InternationalCheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ - "name": "instance-InternationalCheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ - "name": "instance-InternationalCheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ - "name": "instance-InternationalCheckoutService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ - "name": "instance-InternationalCheckoutService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ - "slug": "internationalposervice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ - "name": "instance-InternationalPOService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ - "name": "instance-InternationalPOService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ - "name": "instance-InternationalPOService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ - "name": "instance-InternationalPOService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ - "slug": "internationalshippingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ - "name": "instance-InternationalShippingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ - "name": "instance-InternationalShippingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ - "name": "instance-InternationalShippingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ - "name": "instance-InternationalShippingService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ - "slug": "inventoryservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ - "name": "instance-InventoryService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ - "name": "instance-InventoryService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ - "name": "instance-InventoryService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ - "name": "instance-InventoryService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ - "slug": "localizationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ - "name": "instance-LocalizationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ - "name": "instance-LocalizationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ - "name": "instance-LocalizationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ - "name": "instance-LocalizationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ - "slug": "moreaccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ - "name": "instance-MoreAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ - "name": "instance-MoreAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ - "name": "instance-MoreAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ - "name": "instance-MoreAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ - "name": "instance-MoreAccountService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ - "slug": "navigationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ - "name": "instance-NavigationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ - "name": "instance-NavigationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ - "name": "instance-NavigationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ - "name": "instance-NavigationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ - "name": "instance-NavigationService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ - "slug": "ordercreationjob",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ - "name": "instance-OrderCreationJob-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ - "name": "instance-OrderCreationJob-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ - "name": "instance-OrderCreationJob-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ - "name": "instance-OrderCreationJob-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ - "name": "instance-OrderCreationJob-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ - "name": "instance-OrderService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ - "slug": "paymentmethodservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ - "name": "instance-PaymentMethodService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ - "name": "instance-PaymentMethodService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ - "name": "instance-PaymentMethodService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ - "name": "instance-PaymentMethodService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ - "name": "instance-PaymentMethodService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ - "slug": "priceservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ - "name": "instance-PriceService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ - "name": "instance-PriceService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ - "name": "instance-PriceService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ - "name": "instance-PriceService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ - "slug": "privatesaleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ - "name": "instance-PrivatesaleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ - "name": "instance-PrivatesaleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ - "name": "instance-PrivatesaleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ - "name": "instance-PrivatesaleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ - "slug": "productarrayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ - "name": "instance-ProductArrayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ - "name": "instance-ProductArrayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ - "name": "instance-ProductArrayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ - "name": "instance-ProductArrayService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ - "name": "instance-ProductArrayService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ - "slug": "productdetailservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ - "name": "instance-ProductDetailService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ - "name": "instance-ProductDetailService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ - "name": "instance-ProductDetailService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ - "name": "instance-ProductDetailService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ - "name": "instance-ProductDetailService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ - "slug": "productservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ - "name": "instance-ProductService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ - "name": "instance-ProductService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ - "name": "instance-ProductService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ - "slug": "profileservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ - "name": "instance-ProfileService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ - "name": "instance-ProfileService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ - "name": "instance-ProfileService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ - "name": "instance-ProfileService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ - "slug": "promoservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ - "name": "instance-PromoService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ - "name": "instance-PromoService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ - "name": "instance-PromoService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ - "slug": "promotionservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ - "name": "instance-PromotionService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ - "name": "instance-PromotionService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ - "name": "instance-PromotionService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ - "name": "instance-PromotionService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ - "name": "instance-PromotionService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ - "slug": "questionanswerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ - "name": "instance-QuestionanswerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ - "name": "instance-QuestionanswerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ - "name": "instance-QuestionanswerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ - "name": "instance-QuestionanswerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ - "slug": "redbaloonservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ - "name": "instance-RedBaloonService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ - "name": "instance-RedBaloonService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ - "name": "instance-RedBaloonService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ - "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ - "slug": "reviewsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ - "name": "instance-ReviewsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ - "name": "instance-ReviewsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ - "name": "instance-ReviewsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ - "name": "instance-ReviewsService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ - "name": "instance-ReviewsService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ - "slug": "searchfacetsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ - "name": "instance-SearchFacetsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ - "name": "instance-SearchFacetsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ - "name": "instance-SearchFacetsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ - "slug": "searchindexservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ - "name": "instance-SearchIndexService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ - "name": "instance-SearchIndexService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ - "name": "instance-SearchIndexService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ - "name": "instance-SearchIndexService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ - "slug": "shoprunnerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ - "name": "instance-ShopRunnerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ - "name": "instance-ShopRunnerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ - "name": "instance-ShopRunnerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ - "name": "instance-ShopRunnerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ - "name": "instance-ShopRunnerService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ - "slug": "taxservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ - "name": "instance-TaxService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ - "name": "instance-TaxService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ - "name": "instance-TaxService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ - "name": "instance-TaxService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ - "name": "instance-TaxService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ - "slug": "toggleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ - "name": "instance-ToggleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ - "name": "instance-ToggleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ - "name": "instance-ToggleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ - "name": "instance-ToggleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ - "slug": "useraccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ - "name": "instance-UserAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ - "name": "instance-UserAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ - "name": "instance-UserAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ - "name": "instance-UserAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ - "slug": "userauthenticationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ - "name": "instance-UserAuthenticationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ - "name": "instance-UserAuthenticationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ - "name": "instance-UserAuthenticationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ - "name": "instance-UserAuthenticationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ - "slug": "waitlistoverlayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ - "name": "instance-WaitlistOverlayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ - "name": "instance-WaitlistOverlayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ - "name": "instance-WaitlistOverlayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ - "slug": "waitlistservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ - "name": "instance-WaitlistService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ - "name": "instance-WaitlistService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ - "name": "instance-WaitlistService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ - "name": "instance-WaitlistService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ - "name": "instance-WaitlistService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ - "name": "instance-Consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ - "name": "instance-Consul-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ - "name": "instance-Consul-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ - "slug": "nginx",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ - "name": "instance-Nginx-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ - "slug": "mongodb",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ - "name": "instance-MongoDB-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ - "name": "instance-MongoDB-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ - "name": "instance-MongoDB-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ]␊ - }` - -## should return everything - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "user": {␊ - "id": "daf18f20-60c3-4a17-a61e-b5aa60f9e43e",␊ - "firstName": "Judit",␊ - "lastName": "Greskovits",␊ - "email": "name@email.com",␊ - "login": "juditgreskovits",␊ - "__typename": "User"␊ - },␊ - "datacenter": {␊ - "id": "e84d14cc-5b49-4b4e-83ce-ae82e3994c44",␊ - "name": "US East 1",␊ - "region": "us-east-1",␊ - "__typename": "Datacenter"␊ - },␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "name": "Wordpress Blog Example",␊ - "slug": "wordpress-blog-example",␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "hash": null,␊ - "name": "Nginx",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "machineId": "76fe79b8-356b-408d-9089-93c87abdbe93",␊ - "status": "RUNNING",␊ - "healthy": "HEALTHY",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "be227788-74f1-4e5b-a85f-b5c71cbae8d8"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": null,␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "hash": null,␊ - "name": "Wordpress",␊ - "slug": "wordpress",␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "machineId": "011f7479-2d45-442d-99bf-7f6216954cc8",␊ - "status": "RUNNING",␊ - "healthy": "HEALTHY",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "4ee4103e-1a52-4099-a48e-01588f597c70"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": null,␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "hash": null,␊ - "name": "NFS",␊ - "slug": "nfs",␊ - "instances": [␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "machineId": "991c0d29-5c99-4a45-a05f-78c213e77d4f",␊ - "status": "RUNNING",␊ - "healthy": "HEALTHY",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": null,␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "hash": null,␊ - "name": "Memcached",␊ - "slug": "memcached",␊ - "instances": [␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "machineId": "8d8a2238-d981-4849-b523-a37456fbe20b",␊ - "status": "STOPPING",␊ - "healthy": "MAINTENANCE",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "machineId": "f95ad0b9-996f-4f49-8826-e08dd319d5a8",␊ - "status": "RUNNING",␊ - "healthy": "HEALTHY",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "machineId": "d6871ac4-6433-40c3-89e8-8853ce7f8571",␊ - "status": "OFFLINE",␊ - "healthy": "UNAVAILABLE",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "machineId": "d89612c8-0578-474a-b45d-98a1dcf6dd18",␊ - "status": "FAILED",␊ - "healthy": "UNHEALTHY",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "machineId": "3a9fbaf8-722b-463a-86bd-8d3afe0dd759",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": null,␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "hash": null,␊ - "name": "Percona",␊ - "slug": "percona",␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "machineId": "bd57fbf6-f80a-4d59-a6cd-ab3e41813796",␊ - "status": "RUNNING",␊ - "healthy": "UNHEALTHY",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "machineId": "54f56455-3b0c-4e79-882c-ff28b517d2b9",␊ - "status": "RUNNING",␊ - "healthy": "HEALTHY",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [␊ - {␊ - "name": "Percona",␊ - "slug": "percona",␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "machineId": "bd57fbf6-f80a-4d59-a6cd-ab3e41813796",␊ - "status": "RUNNING",␊ - "healthy": "UNHEALTHY",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "name": "percona-primary",␊ - "slug": "percona-primary",␊ - "instances": [␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "machineId": "54f56455-3b0c-4e79-882c-ff28b517d2b9",␊ - "status": "RUNNING",␊ - "healthy": "HEALTHY",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "config": null,␊ - "status": null,␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "hash": null,␊ - "name": "Consul",␊ - "slug": "consul",␊ - "instances": [␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "machineId": "ff5dd3a0-7c12-4ea9-8a41-58b759b2c76d",␊ - "status": "RUNNING",␊ - "healthy": "UNHEALTHY",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": null,␊ - "__typename": "Service"␊ - }␊ - ],␊ - "version": null,␊ - "history": null,␊ - "imported": null,␊ - "status": null,␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ - "name": "cpexample",␊ - "slug": "cpexample",␊ - "services": [␊ - {␊ - "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ - "hash": null,␊ - "name": "frontend",␊ - "slug": "frontend",␊ - "instances": [␊ - {␊ - "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ - "name": "frontend-0",␊ - "machineId": "c5da7ba6-c544-4f78-9dcc-4ae418a08ed2",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ - "name": "frontend-1",␊ - "machineId": "4be909bb-1ee1-4503-a5d0-62e3d460bb93",␊ - "status": "FAILED",␊ - "healthy": "UNAVAILABLE",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "aea06a05-830a-46d3-bdc1-9dcba97303de"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "hash": null,␊ - "name": "mysql",␊ - "slug": "mysql",␊ - "instances": [␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "machineId": "45d1ce78-900b-402d-9553-858e4ec55b87",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "machineId": "11d2c82a-6092-4cac-a97a-bec81bbaffdf",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "machineId": "4a58eab4-3bb6-49c6-aaeb-45a7a9310af0",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "machineId": "9f6c637f-0ef5-464c-b278-55c3cf2a76f5",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "machineId": "7dd8b110-dbea-43a4-9643-316ed2a053bd",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [],␊ - "branches": [␊ - {␊ - "name": "mysql-primary",␊ - "slug": "mysql-primary",␊ - "instances": [␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "machineId": "7dd8b110-dbea-43a4-9643-316ed2a053bd",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "name": "mysql",␊ - "slug": "mysql",␊ - "instances": [␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "machineId": "45d1ce78-900b-402d-9553-858e4ec55b87",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "machineId": "4a58eab4-3bb6-49c6-aaeb-45a7a9310af0",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "machineId": "11d2c82a-6092-4cac-a97a-bec81bbaffdf",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "machineId": "9f6c637f-0ef5-464c-b278-55c3cf2a76f5",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ - "hash": null,␊ - "name": "producer",␊ - "slug": "producer",␊ - "instances": [␊ - {␊ - "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ - "name": "producer-0",␊ - "machineId": "76d03576-787b-4ac9-85e7-3e6e5ea5b60c",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ - "hash": null,␊ - "name": "api",␊ - "slug": "api",␊ - "instances": [␊ - {␊ - "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ - "name": "api-0",␊ - "machineId": "949c82eb-b6bf-47e0-a7e5-d3edbc7299be",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ - "hash": null,␊ - "name": "consul",␊ - "slug": "consul",␊ - "instances": [␊ - {␊ - "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ - "name": "consul-0",␊ - "machineId": "65b286a1-66f6-4c42-bdd5-0fdb986bfbf3",␊ - "status": "RUNNING",␊ - "healthy": "UNAVAILABLE",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - }␊ - ],␊ - "version": null,␊ - "history": null,␊ - "imported": true,␊ - "status": "ACTIVE",␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ - "name": "Complex Microservices",␊ - "slug": "complex-microservices",␊ - "services": [␊ - {␊ - "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ - "hash": null,␊ - "name": "AccountService",␊ - "slug": "accountservice",␊ - "instances": [␊ - {␊ - "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ - "name": "instance-AccountService-0",␊ - "machineId": "7a94462f-5174-42b2-9029-f7e74001fe1a",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ - "name": "instance-AccountService-1",␊ - "machineId": "5ad2f3a8-8720-429b-90f1-c5f118a51f4e",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ - "name": "instance-AccountService-2",␊ - "machineId": "7ce5d386-42b3-44be-a05d-04a17899e486",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ - "hash": null,␊ - "name": "AddressService",␊ - "slug": "addressservice",␊ - "instances": [␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ - "name": "instance-AddressService-0",␊ - "machineId": "b0913e4f-0fc6-4658-839e-400dc3e53cf0",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ - "name": "instance-AddressService-1",␊ - "machineId": "086d8974-b305-4c27-9ad8-f69aa02e1381",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ - "name": "instance-AddressService-2",␊ - "machineId": "eab404b3-2f19-455c-bc82-98b004110162",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ - "name": "instance-AddressService-3",␊ - "machineId": "f9f95eec-793c-4c08-9ec2-0c7082d51e27",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ - "name": "instance-AddressService-4",␊ - "machineId": "2769fdde-3a1c-4f8b-886f-f32b2d40f959",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ - "hash": null,␊ - "name": "BloomreachService",␊ - "slug": "bloomreachservice",␊ - "instances": [␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ - "name": "instance-BloomreachService-0",␊ - "machineId": "f98aa65b-3e60-4b86-a9e6-375bf61171e6",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ - "name": "instance-BloomreachService-1",␊ - "machineId": "0f079926-e47d-482c-aad5-88f4949f57e3",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ - "name": "instance-BloomreachService-2",␊ - "machineId": "c7b52e3d-ee71-4cf2-97ce-0da074015d20",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ - "name": "instance-BloomreachService-3",␊ - "machineId": "8336efdb-07d1-4341-98e9-9de9f5bd729b",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ - "hash": null,␊ - "name": "CartService",␊ - "slug": "cartservice",␊ - "instances": [␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ - "name": "instance-CartService-0",␊ - "machineId": "e09438d9-966f-4088-a56d-4a9deb9cf30a",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ - "name": "instance-CartService-1",␊ - "machineId": "e9b2346c-5c57-40ac-9b7a-b0789dabf3ec",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ - "name": "instance-CartService-2",␊ - "machineId": "7fc260fa-3e62-43c8-beb2-4eb56e63b163",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ - "name": "instance-CartService-3",␊ - "machineId": "df6355d5-2f1a-4d5e-bbb8-92a13fae0f2d",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ - "name": "instance-CartService-4",␊ - "machineId": "86604767-e5de-46f0-8409-038ac87e7b4d",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ - "hash": null,␊ - "name": "Extra service reported by ContainerPilot: CartService-HTTPS",␊ - "slug": "extra service reported by containerpilot: cartservice-https",␊ - "instances": [␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ - "machineId": "c9a49cff-4438-460f-bc46-610bfecbddca",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ - "machineId": "4252ddb5-e9b4-4d1e-aa53-6e1bdcdeab30",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ - "machineId": "783c5eb2-2145-4fd2-a22f-274bec3b2ffc",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ - "machineId": "f8a54a11-93f4-4b0a-9c80-be6542393448",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ - "hash": null,␊ - "name": "CCTokenizationClientService",␊ - "slug": "cctokenizationclientservice",␊ - "instances": [␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ - "name": "instance-CCTokenizationClientService-0",␊ - "machineId": "ec5214d1-fff8-4a29-b05b-506e7f7de178",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ - "name": "instance-CCTokenizationClientService-1",␊ - "machineId": "6e28e57f-21c4-486e-bf19-c9171ad454e9",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ - "name": "instance-CCTokenizationClientService-2",␊ - "machineId": "9c4c6c41-bacd-4b2e-8bc8-c96c762d5ffc",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ - "hash": null,␊ - "name": "CheckoutService",␊ - "slug": "checkoutservice",␊ - "instances": [␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ - "name": "instance-CheckoutService-0",␊ - "machineId": "7eada63f-fd3c-47d8-84c7-7b2f100ece48",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ - "name": "instance-CheckoutService-1",␊ - "machineId": "2546f9cc-82bd-4efd-86a7-f1f9c161f553",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ - "name": "instance-CheckoutService-2",␊ - "machineId": "d5916d7b-9e2d-449e-a726-fd6eb679d8dc",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ - "hash": null,␊ - "name": "ColorSwatchService",␊ - "slug": "colorswatchservice",␊ - "instances": [␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ - "name": "instance-ColorSwatchService-0",␊ - "machineId": "fe1bd98d-fbc7-4ae9-bb88-1a08f14d3c3c",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ - "name": "instance-ColorSwatchService-1",␊ - "machineId": "019fbce4-48f3-4093-bb5b-cbc57129c6ce",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ - "name": "instance-ColorSwatchService-2",␊ - "machineId": "24fc33c1-aaaa-451e-b666-990e730b0e1e",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ - "name": "instance-ColorSwatchService-3",␊ - "machineId": "d9a54997-106d-4618-add6-d40139b0d951",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ - "name": "instance-ColorSwatchService-4",␊ - "machineId": "2131357d-c850-4fdd-a3b6-8ac350abf59b",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "66babdef-4512-456c-8d16-b6223766da01",␊ - "hash": null,␊ - "name": "EmailMarketingService",␊ - "slug": "emailmarketingservice",␊ - "instances": [␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ - "name": "instance-EmailMarketingService-0",␊ - "machineId": "4d915c72-b436-49ba-a144-f0e98a017888",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ - "name": "instance-EmailMarketingService-1",␊ - "machineId": "efbc9404-aec8-4aab-a66a-8caef91a8d58",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ - "name": "instance-EmailMarketingService-2",␊ - "machineId": "5181e8a9-241e-401d-9504-669826345dd1",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ - "hash": null,␊ - "name": "FavoriteService",␊ - "slug": "favoriteservice",␊ - "instances": [␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ - "name": "instance-FavoriteService-0",␊ - "machineId": "fe775a4a-e081-42c4-a9b8-605f52a6cb69",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ - "name": "instance-FavoriteService-1",␊ - "machineId": "549ba710-03d2-4c7b-a26a-ae19b9684fc2",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ - "name": "instance-FavoriteService-2",␊ - "machineId": "acd9fc0f-9e67-4926-88c9-f824844b67ce",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ - "name": "instance-FavoriteService-3",␊ - "machineId": "8d099a34-07da-4e06-87a0-44039f9cf59f",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ - "name": "instance-FavoriteService-4",␊ - "machineId": "9b5674a0-2b22-4349-850a-fdfd2ca312c2",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ - "hash": null,␊ - "name": "FindInStoreService",␊ - "slug": "findinstoreservice",␊ - "instances": [␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ - "name": "instance-FindInStoreService-0",␊ - "machineId": "0ba01fce-6e3c-433c-b341-e9afee0bf252",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ - "name": "instance-FindInStoreService-1",␊ - "machineId": "a61a0d3d-2cae-4ef0-954a-0f005c386eed",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ - "name": "instance-FindInStoreService-2",␊ - "machineId": "4be8670e-2ea5-4fc5-80c3-29cc0fab5f8d",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ - "hash": null,␊ - "name": "FitpredictorService",␊ - "slug": "fitpredictorservice",␊ - "instances": [␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ - "name": "instance-FitpredictorService-0",␊ - "machineId": "81b0904b-637e-4ead-8092-353f062ad614",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ - "name": "instance-FitpredictorService-1",␊ - "machineId": "007d9c65-40c5-482d-8ee8-b9ec75d522a6",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ - "name": "instance-FitpredictorService-2",␊ - "machineId": "49d90976-e8ec-467b-ae78-70bd5332f24d",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ - "name": "instance-FitpredictorService-3",␊ - "machineId": "2f58f000-99a1-41fd-a6f3-23610c935eaa",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ - "hash": null,␊ - "name": "HidefromcatalogService",␊ - "slug": "hidefromcatalogservice",␊ - "instances": [␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ - "name": "instance-HidefromcatalogService-0",␊ - "machineId": "37fb72ed-bb1c-405a-a01c-950b1d62fd44",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ - "name": "instance-HidefromcatalogService-1",␊ - "machineId": "da0da055-9067-4159-bf2a-bbe7bca13dc2",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ - "name": "instance-HidefromcatalogService-2",␊ - "machineId": "1fc8dc72-aa74-490d-873a-121554f25109",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ - "name": "instance-HidefromcatalogService-3",␊ - "machineId": "75de8a2f-bec8-4dab-b046-b1aa8ad3d2e4",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ - "hash": null,␊ - "name": "InternationalCheckoutService",␊ - "slug": "internationalcheckoutservice",␊ - "instances": [␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ - "name": "instance-InternationalCheckoutService-0",␊ - "machineId": "6242323a-f3c1-40f0-81b4-284ad1fa238f",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ - "name": "instance-InternationalCheckoutService-1",␊ - "machineId": "ccef4c0d-3608-4bad-9127-fda2932ee78a",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ - "name": "instance-InternationalCheckoutService-2",␊ - "machineId": "c9de38ac-22bc-40ed-9ff2-b8afc3175d47",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ - "name": "instance-InternationalCheckoutService-3",␊ - "machineId": "afdc3777-df66-4772-961a-34fe4910fec6",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ - "name": "instance-InternationalCheckoutService-4",␊ - "machineId": "51190835-8e73-45eb-a2c3-b349a45b1248",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ - "hash": null,␊ - "name": "InternationalPOService",␊ - "slug": "internationalposervice",␊ - "instances": [␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ - "name": "instance-InternationalPOService-0",␊ - "machineId": "b2366748-e22e-4962-9808-0c00e76fe883",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ - "name": "instance-InternationalPOService-1",␊ - "machineId": "dae58381-7f28-44c8-9b8e-0496f2dd6974",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ - "name": "instance-InternationalPOService-2",␊ - "machineId": "d9a88b5c-9033-47a4-b729-75945c65af52",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ - "name": "instance-InternationalPOService-3",␊ - "machineId": "c5b5eede-0062-4036-9b2a-e6668b742336",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ - "hash": null,␊ - "name": "InternationalShippingService",␊ - "slug": "internationalshippingservice",␊ - "instances": [␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ - "name": "instance-InternationalShippingService-0",␊ - "machineId": "d6db9222-bf82-4c80-8572-08c7bfc91077",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ - "name": "instance-InternationalShippingService-1",␊ - "machineId": "d9ebdf82-d73a-438b-9465-e82fc8bb575e",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ - "name": "instance-InternationalShippingService-2",␊ - "machineId": "dc63df5d-7496-4585-a7f8-dcd1f2218c0f",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ - "name": "instance-InternationalShippingService-3",␊ - "machineId": "dadbf32d-f51d-4f23-aedf-5e604b869958",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ - "hash": null,␊ - "name": "InventoryService",␊ - "slug": "inventoryservice",␊ - "instances": [␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ - "name": "instance-InventoryService-0",␊ - "machineId": "a27e578a-9a20-4d76-9555-6e7acb2928af",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ - "name": "instance-InventoryService-1",␊ - "machineId": "5a1b6519-8608-4579-8860-1798b1744413",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ - "name": "instance-InventoryService-2",␊ - "machineId": "f35becf4-fa3c-4af3-9412-8250e0aa5381",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ - "name": "instance-InventoryService-3",␊ - "machineId": "c09e4729-fee5-4c77-b589-014c85331987",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ - "hash": null,␊ - "name": "LocalizationService",␊ - "slug": "localizationservice",␊ - "instances": [␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ - "name": "instance-LocalizationService-0",␊ - "machineId": "328876ea-8774-4d87-b523-c6a3410dc5c5",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ - "name": "instance-LocalizationService-1",␊ - "machineId": "009cc3dc-a378-47ef-ab44-7c8f79e01007",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ - "name": "instance-LocalizationService-2",␊ - "machineId": "25959dc2-862c-46f7-b59d-06569585f3e8",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ - "name": "instance-LocalizationService-3",␊ - "machineId": "e7988ff9-2cf8-4d74-995f-4ace9e8d1971",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ - "hash": null,␊ - "name": "MoreAccountService",␊ - "slug": "moreaccountservice",␊ - "instances": [␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ - "name": "instance-MoreAccountService-0",␊ - "machineId": "e20c9221-0ff5-498c-afa3-0828ee3c54c0",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ - "name": "instance-MoreAccountService-1",␊ - "machineId": "d7dcdc8e-63c1-4d6b-8057-c5b43df376d3",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ - "name": "instance-MoreAccountService-2",␊ - "machineId": "7ddee330-71be-4f15-b4d0-016ab587a90b",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ - "name": "instance-MoreAccountService-3",␊ - "machineId": "39db7636-8986-40f9-aa62-9d471afd8d2e",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ - "name": "instance-MoreAccountService-4",␊ - "machineId": "c0d0f9f3-933d-4e22-9b92-89db0068d9e4",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ - "hash": null,␊ - "name": "NavigationService",␊ - "slug": "navigationservice",␊ - "instances": [␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ - "name": "instance-NavigationService-0",␊ - "machineId": "8317d214-2aa9-4061-be02-2d7e773ee778",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ - "name": "instance-NavigationService-1",␊ - "machineId": "004bf8a2-22fe-4ac5-8875-f3f92241fcfa",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ - "name": "instance-NavigationService-2",␊ - "machineId": "2734c9b8-5551-4d62-910b-d56c2e7702cf",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ - "name": "instance-NavigationService-3",␊ - "machineId": "1eca43b9-2bb0-4b85-af65-70e6a3a93d98",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ - "name": "instance-NavigationService-4",␊ - "machineId": "1036dd0a-2ac5-4c39-9678-442b41b5b66b",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ - "hash": null,␊ - "name": "OrderCreationJob",␊ - "slug": "ordercreationjob",␊ - "instances": [␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ - "name": "instance-OrderCreationJob-0",␊ - "machineId": "0e0430e8-3c0b-49e8-ad21-cba0aa2aba3d",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ - "name": "instance-OrderCreationJob-1",␊ - "machineId": "983f5a54-d7a0-4976-923e-62e0fb4c560f",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ - "name": "instance-OrderCreationJob-2",␊ - "machineId": "ec8b9feb-22ca-4e89-847f-0f0c3a464860",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ - "name": "instance-OrderCreationJob-3",␊ - "machineId": "fa34f03c-7d28-40ba-9bf9-95cbf21b25cf",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ - "name": "instance-OrderCreationJob-4",␊ - "machineId": "c0b1fdd2-8d6f-46f1-b359-214d7500d70e",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ - "hash": null,␊ - "name": "OrderService",␊ - "slug": "orderservice",␊ - "instances": [␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ - "name": "instance-OrderService-0",␊ - "machineId": "03524b3f-f7de-4433-9b00-d2c1ca38cfb2",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ - "name": "instance-OrderService-1",␊ - "machineId": "c09b7477-ee9a-42f0-aa60-4e5d092812b5",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ - "name": "instance-OrderService-2",␊ - "machineId": "ecca8837-37b7-458b-a05b-74a5752a2315",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ - "hash": null,␊ - "name": "OrderService",␊ - "slug": "orderservice",␊ - "instances": [␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ - "name": "instance-OrderService-0",␊ - "machineId": "510a8c12-e752-4f2c-9670-c03a15503796",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ - "name": "instance-OrderService-1",␊ - "machineId": "e313aa06-ac32-46da-9010-cee561578c59",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ - "name": "instance-OrderService-2",␊ - "machineId": "aa7d299c-a589-4cc4-8e39-42097e6dce17",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ - "name": "instance-OrderService-3",␊ - "machineId": "1f908042-c694-4e31-a678-acd1ec165644",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ - "hash": null,␊ - "name": "PaymentMethodService",␊ - "slug": "paymentmethodservice",␊ - "instances": [␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ - "name": "instance-PaymentMethodService-0",␊ - "machineId": "ac777422-423d-450a-acf0-2a42d4c1f157",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ - "name": "instance-PaymentMethodService-1",␊ - "machineId": "f2ba162f-9e11-4ceb-abdc-8d9fbbc135cb",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ - "name": "instance-PaymentMethodService-2",␊ - "machineId": "d1c99e98-8924-479c-832f-de15c316c05e",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ - "name": "instance-PaymentMethodService-3",␊ - "machineId": "c5667348-c39e-41e9-91f9-b92cd307ff64",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ - "name": "instance-PaymentMethodService-4",␊ - "machineId": "9bf197fe-4d56-4347-ad34-85bcf8f05d77",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ - "hash": null,␊ - "name": "PaymentService",␊ - "slug": "paymentservice",␊ - "instances": [␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ - "name": "instance-PaymentService-0",␊ - "machineId": "84a339a3-8b1f-42fe-9d71-5fc43af7efb9",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ - "name": "instance-PaymentService-1",␊ - "machineId": "40044bd9-fa29-47be-acf7-aafa2e3abe71",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ - "name": "instance-PaymentService-2",␊ - "machineId": "3d885b0c-79b7-44d2-b418-cbbe2025f0fa",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ - "name": "instance-PaymentService-3",␊ - "machineId": "39ddada7-151f-4786-b81f-26dd8ff4cef8",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ - "hash": null,␊ - "name": "PaymentService",␊ - "slug": "paymentservice",␊ - "instances": [␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ - "name": "instance-PaymentService-0",␊ - "machineId": "266048f5-3d0b-4955-a1d5-a63273bbff07",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ - "name": "instance-PaymentService-1",␊ - "machineId": "0f8334e4-50ad-47a1-8fc8-00095798eb91",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ - "name": "instance-PaymentService-2",␊ - "machineId": "97791e82-627a-46a6-998d-a70bff7ee278",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ - "name": "instance-PaymentService-3",␊ - "machineId": "c7676607-ece9-474c-a620-ebfdea63e284",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ - "hash": null,␊ - "name": "PriceService",␊ - "slug": "priceservice",␊ - "instances": [␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ - "name": "instance-PriceService-0",␊ - "machineId": "5f78a2b3-eea8-4e0e-b41a-2de9ec2bbee3",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ - "name": "instance-PriceService-1",␊ - "machineId": "69c8da0e-dcc6-4a49-901f-1c26d78e1083",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ - "name": "instance-PriceService-2",␊ - "machineId": "684f61e1-e87a-4fcf-819b-97e8ab0d53b5",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ - "name": "instance-PriceService-3",␊ - "machineId": "bb776fb1-f554-4702-9389-b20672f1ba47",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ - "hash": null,␊ - "name": "PrivatesaleService",␊ - "slug": "privatesaleservice",␊ - "instances": [␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ - "name": "instance-PrivatesaleService-0",␊ - "machineId": "b5eef5e0-be43-40be-a0ff-5d2dee072d37",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ - "name": "instance-PrivatesaleService-1",␊ - "machineId": "62f71598-1db7-4a03-8f70-09c2fef48c51",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ - "name": "instance-PrivatesaleService-2",␊ - "machineId": "085ea830-c7cb-4956-a867-cc574526465a",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ - "name": "instance-PrivatesaleService-3",␊ - "machineId": "07bddd94-bc76-40bb-a639-65f8f39ac4a6",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ - "hash": null,␊ - "name": "ProductArrayService",␊ - "slug": "productarrayservice",␊ - "instances": [␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ - "name": "instance-ProductArrayService-0",␊ - "machineId": "9923fd69-69bf-450a-bb53-e34b9cda7951",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ - "name": "instance-ProductArrayService-1",␊ - "machineId": "36296795-b50b-449c-b494-3d53f3aebde8",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ - "name": "instance-ProductArrayService-2",␊ - "machineId": "f1b7ca63-4511-4fcf-974f-985e7b212ce3",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ - "name": "instance-ProductArrayService-3",␊ - "machineId": "9ba3229c-d24e-45dc-ba8f-6b8f6942b887",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ - "name": "instance-ProductArrayService-4",␊ - "machineId": "ac5028c0-d8e3-4550-ae38-0f40bec5133f",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ - "hash": null,␊ - "name": "ProductDetailService",␊ - "slug": "productdetailservice",␊ - "instances": [␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ - "name": "instance-ProductDetailService-0",␊ - "machineId": "495f234d-846a-45af-a9d1-a8c0b0010396",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ - "name": "instance-ProductDetailService-1",␊ - "machineId": "01106446-1320-420f-a486-8195f4755b43",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ - "name": "instance-ProductDetailService-2",␊ - "machineId": "1ae6f186-d9ee-487b-ba5f-35549395b2b8",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ - "name": "instance-ProductDetailService-3",␊ - "machineId": "107e3f9a-c63f-4a78-999d-dce5932cc206",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ - "name": "instance-ProductDetailService-4",␊ - "machineId": "2f8fc356-8d85-446c-848b-ae383388b6ab",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ - "hash": null,␊ - "name": "ProductService",␊ - "slug": "productservice",␊ - "instances": [␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ - "name": "instance-ProductService-0",␊ - "machineId": "94455b1b-6fb9-4442-b1d3-9e91cef30e2e",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ - "name": "instance-ProductService-1",␊ - "machineId": "7abfe76d-7b8a-4a4d-9e75-e296ba7e0e25",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ - "name": "instance-ProductService-2",␊ - "machineId": "2e733d49-fb55-42b5-8117-699608dd1bf9",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ - "hash": null,␊ - "name": "ProfileService",␊ - "slug": "profileservice",␊ - "instances": [␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ - "name": "instance-ProfileService-0",␊ - "machineId": "e27097a6-d7e6-4541-b9b2-22e7bcf9091f",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ - "name": "instance-ProfileService-1",␊ - "machineId": "73e64de6-0d37-4eb5-8c49-fa32311b4f7c",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ - "name": "instance-ProfileService-2",␊ - "machineId": "be83bd3e-13fb-4a1b-98cc-0839ec80d11d",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ - "name": "instance-ProfileService-3",␊ - "machineId": "f0683944-7392-4801-b474-fe78ca61a91b",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ - "hash": null,␊ - "name": "PromoService",␊ - "slug": "promoservice",␊ - "instances": [␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ - "name": "instance-PromoService-0",␊ - "machineId": "06a5c1be-646c-480e-96a8-8620fd221b03",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ - "name": "instance-PromoService-1",␊ - "machineId": "5bf90ba8-c3e7-4fc2-a0aa-4b245367f70e",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ - "name": "instance-PromoService-2",␊ - "machineId": "399e7051-8b61-4ef9-a7da-ed1e33ca0fa1",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ - "hash": null,␊ - "name": "PromotionService",␊ - "slug": "promotionservice",␊ - "instances": [␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ - "name": "instance-PromotionService-0",␊ - "machineId": "c6def1eb-c4c5-4915-a664-1e54a4d27ab2",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ - "name": "instance-PromotionService-1",␊ - "machineId": "986aaa77-ebf4-4404-be8c-43850df29ae6",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ - "name": "instance-PromotionService-2",␊ - "machineId": "7802a82e-d529-4c91-9961-510a4aa310a0",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ - "name": "instance-PromotionService-3",␊ - "machineId": "abafc915-b56c-4d2e-8ed2-2d3770212a0a",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ - "name": "instance-PromotionService-4",␊ - "machineId": "a12f36bb-0939-493b-b59f-7c6b2c45b979",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ - "hash": null,␊ - "name": "QuestionanswerService",␊ - "slug": "questionanswerservice",␊ - "instances": [␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ - "name": "instance-QuestionanswerService-0",␊ - "machineId": "1e284cf3-e996-4487-b357-25db82a65938",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ - "name": "instance-QuestionanswerService-1",␊ - "machineId": "4dc23279-7bf0-48c2-8d09-ce15e41f7a50",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ - "name": "instance-QuestionanswerService-2",␊ - "machineId": "a4aa9d5b-5674-4796-bb33-0314c053facc",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ - "name": "instance-QuestionanswerService-3",␊ - "machineId": "db675533-f542-4bba-a977-c3a12d0609f4",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ - "hash": null,␊ - "name": "RedBaloonService",␊ - "slug": "redbaloonservice",␊ - "instances": [␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ - "name": "instance-RedBaloonService-0",␊ - "machineId": "839d2461-cb78-4072-a81f-bba16a49fc89",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ - "name": "instance-RedBaloonService-1",␊ - "machineId": "f07ea401-edb9-4140-a57c-6f21864895c6",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ - "name": "instance-RedBaloonService-2",␊ - "machineId": "15451e87-4a2c-41de-ae45-5188ea3763e9",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ - "hash": null,␊ - "name": "Extra service reported by ContainerPilot: RedBaloonService-HTTPS",␊ - "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ - "instances": [␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ - "machineId": "20f5bf63-c7d7-4b80-bbe0-63dd744f1b72",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ - "machineId": "bf10d972-17e0-4267-908e-4a8184d7c164",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ - "machineId": "d7204a39-5005-4925-a2d5-02afbb2457db",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ - "machineId": "80dac6f7-e459-4f42-b824-5abdd6f13d41",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ - "machineId": "dbb819d5-9df2-48e1-8412-7cd48ca4c186",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ - "hash": null,␊ - "name": "ReviewsService",␊ - "slug": "reviewsservice",␊ - "instances": [␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ - "name": "instance-ReviewsService-0",␊ - "machineId": "708e3623-0cbf-4dff-89b5-8b4dc06e56bf",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ - "name": "instance-ReviewsService-1",␊ - "machineId": "2771dc39-4fa3-41ef-80bd-4522165ff428",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ - "name": "instance-ReviewsService-2",␊ - "machineId": "fcba67fb-5119-4fb0-9d2d-8cb877464d98",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ - "name": "instance-ReviewsService-3",␊ - "machineId": "85ff21d8-15a6-4e76-8b7d-656c53656ba4",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ - "name": "instance-ReviewsService-4",␊ - "machineId": "b8a3a53f-f1c3-4796-b2b8-85b96b6a96a4",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ - "hash": null,␊ - "name": "SearchFacetsService",␊ - "slug": "searchfacetsservice",␊ - "instances": [␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ - "name": "instance-SearchFacetsService-0",␊ - "machineId": "b9dbbeaa-c1f5-468f-89ac-f04b98a931ce",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ - "name": "instance-SearchFacetsService-1",␊ - "machineId": "683e9733-adb6-4e5f-bdce-eea7027b6173",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ - "name": "instance-SearchFacetsService-2",␊ - "machineId": "0215a196-9fea-4197-a478-1f0191fde5c2",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ - "hash": null,␊ - "name": "SearchIndexService",␊ - "slug": "searchindexservice",␊ - "instances": [␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ - "name": "instance-SearchIndexService-0",␊ - "machineId": "dabb9629-7844-4e0b-ab9b-9657de583864",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ - "name": "instance-SearchIndexService-1",␊ - "machineId": "7a52ffd7-460b-4e23-92a2-e405d3ac9c6c",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ - "name": "instance-SearchIndexService-2",␊ - "machineId": "307f023d-519e-4cfc-845f-9fda283bc766",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ - "name": "instance-SearchIndexService-3",␊ - "machineId": "01750ab3-f20c-4077-8453-3a99025f846e",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ - "hash": null,␊ - "name": "ShopRunnerService",␊ - "slug": "shoprunnerservice",␊ - "instances": [␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ - "name": "instance-ShopRunnerService-0",␊ - "machineId": "51a1bdc0-e282-4e8f-b2aa-b3f663fe4e64",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ - "name": "instance-ShopRunnerService-1",␊ - "machineId": "5f66cadd-4d6e-497d-ac32-258b5e70d36c",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ - "name": "instance-ShopRunnerService-2",␊ - "machineId": "ec91237d-5052-49ad-be25-d55b8be15f75",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ - "name": "instance-ShopRunnerService-3",␊ - "machineId": "06e22fb5-e6c0-43cd-806c-32c308f54687",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ - "name": "instance-ShopRunnerService-4",␊ - "machineId": "aba0f29a-664b-4455-b51d-8d4f61c7f936",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ - "hash": null,␊ - "name": "TaxService",␊ - "slug": "taxservice",␊ - "instances": [␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ - "name": "instance-TaxService-0",␊ - "machineId": "b723da71-3441-4a0d-962f-13be9fc87f12",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ - "name": "instance-TaxService-1",␊ - "machineId": "3625f022-5b5e-4d46-b580-fcd3ca11f013",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ - "name": "instance-TaxService-2",␊ - "machineId": "291f11b6-141a-4416-8e41-a9eec2d70514",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ - "name": "instance-TaxService-3",␊ - "machineId": "d3b4eb5b-ff7b-44f7-ad5a-6d07e7d688c3",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ - "name": "instance-TaxService-4",␊ - "machineId": "790e4bb5-f089-42cd-8e86-b9645eed618a",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ - "hash": null,␊ - "name": "ToggleService",␊ - "slug": "toggleservice",␊ - "instances": [␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ - "name": "instance-ToggleService-0",␊ - "machineId": "4d4cb469-20d3-44d1-91d3-40d7805c84ac",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ - "name": "instance-ToggleService-1",␊ - "machineId": "5fe7ceca-b886-4248-9808-7eb6ed46515f",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ - "name": "instance-ToggleService-2",␊ - "machineId": "d279a63f-9471-4078-90a0-9d59bbd374f5",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ - "name": "instance-ToggleService-3",␊ - "machineId": "99185403-e804-443f-9ede-014d5f4006ac",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ - "hash": null,␊ - "name": "UserAccountService",␊ - "slug": "useraccountservice",␊ - "instances": [␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ - "name": "instance-UserAccountService-0",␊ - "machineId": "44b454b1-cc8b-4a8d-95d9-b5939a00a9bd",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ - "name": "instance-UserAccountService-1",␊ - "machineId": "f57ba43d-159b-4c61-91c3-1f5d29d74a7a",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ - "name": "instance-UserAccountService-2",␊ - "machineId": "fca15f53-b425-47f0-863d-e338982122e7",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ - "name": "instance-UserAccountService-3",␊ - "machineId": "22e70edc-1813-41ad-ab5e-1bef4eb5912e",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ - "hash": null,␊ - "name": "UserAuthenticationService",␊ - "slug": "userauthenticationservice",␊ - "instances": [␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ - "name": "instance-UserAuthenticationService-0",␊ - "machineId": "23368713-1e27-42e9-a842-b6555ba2c7be",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ - "name": "instance-UserAuthenticationService-1",␊ - "machineId": "f432cc77-91a8-42e5-baa3-4b64405dd83f",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ - "name": "instance-UserAuthenticationService-2",␊ - "machineId": "16e5550f-c09d-4bad-89bb-3628c5576bbe",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ - "name": "instance-UserAuthenticationService-3",␊ - "machineId": "5760762c-eea2-4d96-abdb-eae263111d83",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ - "hash": null,␊ - "name": "WaitlistOverlayService",␊ - "slug": "waitlistoverlayservice",␊ - "instances": [␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ - "name": "instance-WaitlistOverlayService-0",␊ - "machineId": "51f541e1-4e82-4e16-907d-6aeb113f394c",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ - "name": "instance-WaitlistOverlayService-1",␊ - "machineId": "d9bac0ca-3e98-4afb-b426-3c17bab35d45",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ - "name": "instance-WaitlistOverlayService-2",␊ - "machineId": "600fada5-2369-477f-b22d-18a79653109f",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ - "hash": null,␊ - "name": "WaitlistService",␊ - "slug": "waitlistservice",␊ - "instances": [␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ - "name": "instance-WaitlistService-0",␊ - "machineId": "ece4ae8e-c5c4-40c2-8d28-594d7015fd36",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ - "name": "instance-WaitlistService-1",␊ - "machineId": "214b9f77-c6ec-446c-a20c-0b7e0e5bbf98",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ - "name": "instance-WaitlistService-2",␊ - "machineId": "f4a0a162-2093-4481-b6c6-f8728600cd03",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ - "name": "instance-WaitlistService-3",␊ - "machineId": "8319135d-3568-42f3-8df4-550615639ff1",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ - "name": "instance-WaitlistService-4",␊ - "machineId": "d178d330-b864-4985-b245-8dc1c1eb7d54",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ - "hash": null,␊ - "name": "Consul",␊ - "slug": "consul",␊ - "instances": [␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ - "name": "instance-Consul-0",␊ - "machineId": "5581072a-bd07-4d44-bd9d-86f23e421e6b",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ - "name": "instance-Consul-1",␊ - "machineId": "4bf8e8b8-ea02-482f-b832-9e29428e96af",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ - "name": "instance-Consul-2",␊ - "machineId": "d678775c-4921-4a58-80e7-d2c787db73f9",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ - "hash": null,␊ - "name": "Nginx",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ - "name": "instance-Nginx-0",␊ - "machineId": "7a2cc743-3dec-497d-a4e0-04a1238997cb",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": [␊ - "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ - "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ - "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ - "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ - "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ - "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ - "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ - "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ - "66babdef-4512-456c-8d16-b6223766da01",␊ - "21b2b735-1706-49f6-a136-f2910c110e84",␊ - "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ - "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ - "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ - "25725be5-6880-438f-9590-7c8cd9606224",␊ - "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ - "de943737-bf8f-4adb-979a-05b083e1b52d",␊ - "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ - "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ - "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ - "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ - "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ - "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ - "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ - "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ - "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ - "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ - "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ - "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ - "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ - "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ - "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ - "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ - "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ - "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ - "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ - "8b8a8506-fc87-4464-acac-f98b934ed755",␊ - "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ - "709971c3-794d-42b5-b2dc-42c51db75c41",␊ - "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ - "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ - "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ - "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ - "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ - "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ - "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ - "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ - "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ - "2540f59b-5f81-4458-94a1-38e6eef5d78a"␊ - ],␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ - "hash": null,␊ - "name": "MongoDB",␊ - "slug": "mongodb",␊ - "instances": [␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ - "name": "instance-MongoDB-0",␊ - "machineId": "290c2f89-4d03-46dd-a637-d9c4d3d64a7b",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ - "name": "instance-MongoDB-1",␊ - "machineId": "b40d9796-ebfd-4926-972d-9a65ec03fda4",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ - "name": "instance-MongoDB-2",␊ - "machineId": "a8137828-e1de-40ef-8714-b94c0bec24cb",␊ - "status": "RUNNING",␊ - "healthy": "UNKNOWN",␊ - "watches": null,␊ - "jobs": null,␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "connections": null,␊ - "branches": [],␊ - "config": null,␊ - "status": "ACTIVE",␊ - "__typename": "Service"␊ - }␊ - ],␊ - "version": null,␊ - "history": null,␊ - "imported": null,␊ - "status": "ACTIVE",␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## should return filtered DeploymentGroup's - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "name": "Wordpress Blog Example",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "name": "Nginx",␊ - "status": null,␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "name": "Wordpress",␊ - "status": null,␊ - "slug": "wordpress",␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "name": "NFS",␊ - "status": null,␊ - "slug": "nfs",␊ - "instances": [␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "name": "Memcached",␊ - "status": null,␊ - "slug": "memcached",␊ - "instances": [␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "name": "Percona",␊ - "status": null,␊ - "slug": "percona",␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [␊ - {␊ - "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ - "name": "Percona",␊ - "slug": "percona",␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ - "name": "percona-primary",␊ - "slug": "percona-primary",␊ - "instances": [␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "name": "Consul",␊ - "status": null,␊ - "slug": "consul",␊ - "instances": [␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `{␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "name": "Wordpress Blog Example",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "name": "Nginx",␊ - "status": null,␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "name": "Wordpress",␊ - "status": null,␊ - "slug": "wordpress",␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "name": "NFS",␊ - "status": null,␊ - "slug": "nfs",␊ - "instances": [␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "name": "Memcached",␊ - "status": null,␊ - "slug": "memcached",␊ - "instances": [␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "name": "Percona",␊ - "status": null,␊ - "slug": "percona",␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [␊ - {␊ - "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ - "name": "Percona",␊ - "slug": "percona",␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ - "name": "percona-primary",␊ - "slug": "percona-primary",␊ - "instances": [␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "name": "Consul",␊ - "status": null,␊ - "slug": "consul",␊ - "instances": [␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ]␊ - }` - -## should return filtered instances - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ - "name": "cpexample",␊ - "slug": "cpexample",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ - "name": "frontend",␊ - "slug": "frontend",␊ - "status": "ACTIVE",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "name": "mysql",␊ - "slug": "mysql",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [␊ - {␊ - "name": "mysql-primary",␊ - "slug": "mysql-primary",␊ - "instances": [␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "name": "mysql",␊ - "slug": "mysql",␊ - "instances": [␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ - "name": "producer",␊ - "slug": "producer",␊ - "status": "ACTIVE",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ - "name": "api",␊ - "slug": "api",␊ - "status": "ACTIVE",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ - "name": "consul",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `{␊ - "instances": [␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ]␊ - }` - -## should return filtered services - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "slug": "nginx",␊ - "status": null,␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "slug": "wordpress",␊ - "status": null,␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "slug": "nfs",␊ - "status": null,␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "slug": "memcached",␊ - "status": null,␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "slug": "percona",␊ - "status": null,␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "slug": "consul",␊ - "status": null,␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `{␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "slug": "nginx",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "primary-nginx",␊ - "slug": "nginx",␊ - "status": null,␊ - "instances": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ - "slug": "nginx",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ - "name": "instance-Nginx-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ]␊ - }` - -## should return instances - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "slug": "nginx",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "slug": "wordpress",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "slug": "nfs",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "slug": "memcached",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "slug": "percona",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [␊ - {␊ - "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ - "name": "Percona",␊ - "slug": "percona",␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ - "name": "percona-primary",␊ - "slug": "percona-primary",␊ - "instances": [␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "slug": "consul",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ - "slug": "cpexample",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ - "slug": "frontend",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ - "name": "frontend-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ - "name": "frontend-1",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "slug": "mysql",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [␊ - {␊ - "id": "61eaa840fffdf9d3681710ae65862551b9d975bdd790fcd650aa66e4ccd94bd380a06284dbe1fd9013e2876fb45bfa47e4aff185142fbb54cd369ffa45530f70",␊ - "name": "mysql-primary",␊ - "slug": "mysql-primary",␊ - "instances": [␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "f606110c5057af7f55a940ab7f4a53f9b4a07a37ee0ee5c9dc98626d71a3b62dd9cf95d93f0478f712ab73bc5ea602674cee640ebf51c694740f29f10fb4d717",␊ - "name": "mysql",␊ - "slug": "mysql",␊ - "instances": [␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ - "slug": "producer",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ - "name": "producer-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ - "slug": "api",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ - "name": "api-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ - "name": "consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ - "slug": "complex-microservices",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ - "slug": "accountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ - "name": "instance-AccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ - "name": "instance-AccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ - "name": "instance-AccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ - "slug": "addressservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ - "name": "instance-AddressService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ - "name": "instance-AddressService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ - "name": "instance-AddressService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ - "name": "instance-AddressService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ - "name": "instance-AddressService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ - "slug": "bloomreachservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ - "name": "instance-BloomreachService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ - "name": "instance-BloomreachService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ - "name": "instance-BloomreachService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ - "name": "instance-BloomreachService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ - "slug": "cartservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ - "name": "instance-CartService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ - "name": "instance-CartService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ - "name": "instance-CartService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ - "name": "instance-CartService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ - "name": "instance-CartService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ - "slug": "extra service reported by containerpilot: cartservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ - "slug": "cctokenizationclientservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ - "name": "instance-CCTokenizationClientService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ - "name": "instance-CCTokenizationClientService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ - "name": "instance-CCTokenizationClientService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ - "slug": "checkoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ - "name": "instance-CheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ - "name": "instance-CheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ - "name": "instance-CheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ - "slug": "colorswatchservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ - "name": "instance-ColorSwatchService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ - "name": "instance-ColorSwatchService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ - "name": "instance-ColorSwatchService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ - "name": "instance-ColorSwatchService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ - "name": "instance-ColorSwatchService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "66babdef-4512-456c-8d16-b6223766da01",␊ - "slug": "emailmarketingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ - "name": "instance-EmailMarketingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ - "name": "instance-EmailMarketingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ - "name": "instance-EmailMarketingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ - "slug": "favoriteservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ - "name": "instance-FavoriteService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ - "name": "instance-FavoriteService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ - "name": "instance-FavoriteService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ - "name": "instance-FavoriteService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ - "name": "instance-FavoriteService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ - "slug": "findinstoreservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ - "name": "instance-FindInStoreService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ - "name": "instance-FindInStoreService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ - "name": "instance-FindInStoreService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ - "slug": "fitpredictorservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ - "name": "instance-FitpredictorService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ - "name": "instance-FitpredictorService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ - "name": "instance-FitpredictorService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ - "name": "instance-FitpredictorService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ - "slug": "hidefromcatalogservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ - "name": "instance-HidefromcatalogService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ - "name": "instance-HidefromcatalogService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ - "name": "instance-HidefromcatalogService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ - "name": "instance-HidefromcatalogService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ - "slug": "internationalcheckoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ - "name": "instance-InternationalCheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ - "name": "instance-InternationalCheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ - "name": "instance-InternationalCheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ - "name": "instance-InternationalCheckoutService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ - "name": "instance-InternationalCheckoutService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ - "slug": "internationalposervice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ - "name": "instance-InternationalPOService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ - "name": "instance-InternationalPOService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ - "name": "instance-InternationalPOService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ - "name": "instance-InternationalPOService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ - "slug": "internationalshippingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ - "name": "instance-InternationalShippingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ - "name": "instance-InternationalShippingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ - "name": "instance-InternationalShippingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ - "name": "instance-InternationalShippingService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ - "slug": "inventoryservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ - "name": "instance-InventoryService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ - "name": "instance-InventoryService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ - "name": "instance-InventoryService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ - "name": "instance-InventoryService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ - "slug": "localizationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ - "name": "instance-LocalizationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ - "name": "instance-LocalizationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ - "name": "instance-LocalizationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ - "name": "instance-LocalizationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ - "slug": "moreaccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ - "name": "instance-MoreAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ - "name": "instance-MoreAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ - "name": "instance-MoreAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ - "name": "instance-MoreAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ - "name": "instance-MoreAccountService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ - "slug": "navigationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ - "name": "instance-NavigationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ - "name": "instance-NavigationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ - "name": "instance-NavigationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ - "name": "instance-NavigationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ - "name": "instance-NavigationService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ - "slug": "ordercreationjob",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ - "name": "instance-OrderCreationJob-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ - "name": "instance-OrderCreationJob-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ - "name": "instance-OrderCreationJob-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ - "name": "instance-OrderCreationJob-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ - "name": "instance-OrderCreationJob-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ - "name": "instance-OrderService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ - "slug": "paymentmethodservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ - "name": "instance-PaymentMethodService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ - "name": "instance-PaymentMethodService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ - "name": "instance-PaymentMethodService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ - "name": "instance-PaymentMethodService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ - "name": "instance-PaymentMethodService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ - "slug": "priceservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ - "name": "instance-PriceService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ - "name": "instance-PriceService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ - "name": "instance-PriceService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ - "name": "instance-PriceService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ - "slug": "privatesaleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ - "name": "instance-PrivatesaleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ - "name": "instance-PrivatesaleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ - "name": "instance-PrivatesaleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ - "name": "instance-PrivatesaleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ - "slug": "productarrayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ - "name": "instance-ProductArrayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ - "name": "instance-ProductArrayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ - "name": "instance-ProductArrayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ - "name": "instance-ProductArrayService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ - "name": "instance-ProductArrayService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ - "slug": "productdetailservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ - "name": "instance-ProductDetailService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ - "name": "instance-ProductDetailService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ - "name": "instance-ProductDetailService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ - "name": "instance-ProductDetailService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ - "name": "instance-ProductDetailService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ - "slug": "productservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ - "name": "instance-ProductService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ - "name": "instance-ProductService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ - "name": "instance-ProductService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ - "slug": "profileservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ - "name": "instance-ProfileService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ - "name": "instance-ProfileService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ - "name": "instance-ProfileService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ - "name": "instance-ProfileService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ - "slug": "promoservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ - "name": "instance-PromoService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ - "name": "instance-PromoService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ - "name": "instance-PromoService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ - "slug": "promotionservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ - "name": "instance-PromotionService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ - "name": "instance-PromotionService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ - "name": "instance-PromotionService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ - "name": "instance-PromotionService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ - "name": "instance-PromotionService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ - "slug": "questionanswerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ - "name": "instance-QuestionanswerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ - "name": "instance-QuestionanswerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ - "name": "instance-QuestionanswerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ - "name": "instance-QuestionanswerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ - "slug": "redbaloonservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ - "name": "instance-RedBaloonService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ - "name": "instance-RedBaloonService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ - "name": "instance-RedBaloonService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ - "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ - "slug": "reviewsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ - "name": "instance-ReviewsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ - "name": "instance-ReviewsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ - "name": "instance-ReviewsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ - "name": "instance-ReviewsService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ - "name": "instance-ReviewsService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ - "slug": "searchfacetsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ - "name": "instance-SearchFacetsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ - "name": "instance-SearchFacetsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ - "name": "instance-SearchFacetsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ - "slug": "searchindexservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ - "name": "instance-SearchIndexService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ - "name": "instance-SearchIndexService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ - "name": "instance-SearchIndexService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ - "name": "instance-SearchIndexService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ - "slug": "shoprunnerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ - "name": "instance-ShopRunnerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ - "name": "instance-ShopRunnerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ - "name": "instance-ShopRunnerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ - "name": "instance-ShopRunnerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ - "name": "instance-ShopRunnerService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ - "slug": "taxservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ - "name": "instance-TaxService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ - "name": "instance-TaxService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ - "name": "instance-TaxService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ - "name": "instance-TaxService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ - "name": "instance-TaxService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ - "slug": "toggleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ - "name": "instance-ToggleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ - "name": "instance-ToggleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ - "name": "instance-ToggleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ - "name": "instance-ToggleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ - "slug": "useraccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ - "name": "instance-UserAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ - "name": "instance-UserAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ - "name": "instance-UserAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ - "name": "instance-UserAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ - "slug": "userauthenticationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ - "name": "instance-UserAuthenticationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ - "name": "instance-UserAuthenticationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ - "name": "instance-UserAuthenticationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ - "name": "instance-UserAuthenticationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ - "slug": "waitlistoverlayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ - "name": "instance-WaitlistOverlayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ - "name": "instance-WaitlistOverlayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ - "name": "instance-WaitlistOverlayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ - "slug": "waitlistservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ - "name": "instance-WaitlistService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ - "name": "instance-WaitlistService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ - "name": "instance-WaitlistService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ - "name": "instance-WaitlistService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ - "name": "instance-WaitlistService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ - "name": "instance-Consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ - "name": "instance-Consul-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ - "name": "instance-Consul-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ - "slug": "nginx",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ - "name": "instance-Nginx-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ - "slug": "mongodb",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ - "name": "instance-MongoDB-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ - "name": "instance-MongoDB-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ - "name": "instance-MongoDB-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `{␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ - "name": "frontend-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ - "name": "frontend-1",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ - "name": "producer-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ - "name": "api-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ - "name": "consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ - "name": "instance-AccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ - "name": "instance-AccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ - "name": "instance-AccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ - "name": "instance-AddressService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ - "name": "instance-AddressService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ - "name": "instance-AddressService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ - "name": "instance-AddressService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ - "name": "instance-AddressService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ - "name": "instance-BloomreachService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ - "name": "instance-BloomreachService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ - "name": "instance-BloomreachService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ - "name": "instance-BloomreachService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ - "name": "instance-CartService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ - "name": "instance-CartService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ - "name": "instance-CartService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ - "name": "instance-CartService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ - "name": "instance-CartService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ - "name": "instance-CCTokenizationClientService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ - "name": "instance-CCTokenizationClientService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ - "name": "instance-CCTokenizationClientService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ - "name": "instance-CheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ - "name": "instance-CheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ - "name": "instance-CheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ - "name": "instance-ColorSwatchService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ - "name": "instance-ColorSwatchService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ - "name": "instance-ColorSwatchService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ - "name": "instance-ColorSwatchService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ - "name": "instance-ColorSwatchService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ - "name": "instance-EmailMarketingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ - "name": "instance-EmailMarketingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ - "name": "instance-EmailMarketingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ - "name": "instance-FavoriteService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ - "name": "instance-FavoriteService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ - "name": "instance-FavoriteService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ - "name": "instance-FavoriteService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ - "name": "instance-FavoriteService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ - "name": "instance-FindInStoreService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ - "name": "instance-FindInStoreService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ - "name": "instance-FindInStoreService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ - "name": "instance-FitpredictorService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ - "name": "instance-FitpredictorService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ - "name": "instance-FitpredictorService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ - "name": "instance-FitpredictorService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ - "name": "instance-HidefromcatalogService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ - "name": "instance-HidefromcatalogService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ - "name": "instance-HidefromcatalogService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ - "name": "instance-HidefromcatalogService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ - "name": "instance-InternationalCheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ - "name": "instance-InternationalCheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ - "name": "instance-InternationalCheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ - "name": "instance-InternationalCheckoutService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ - "name": "instance-InternationalCheckoutService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ - "name": "instance-InternationalPOService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ - "name": "instance-InternationalPOService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ - "name": "instance-InternationalPOService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ - "name": "instance-InternationalPOService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ - "name": "instance-InternationalShippingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ - "name": "instance-InternationalShippingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ - "name": "instance-InternationalShippingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ - "name": "instance-InternationalShippingService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ - "name": "instance-InventoryService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ - "name": "instance-InventoryService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ - "name": "instance-InventoryService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ - "name": "instance-InventoryService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ - "name": "instance-LocalizationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ - "name": "instance-LocalizationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ - "name": "instance-LocalizationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ - "name": "instance-LocalizationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ - "name": "instance-MoreAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ - "name": "instance-MoreAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ - "name": "instance-MoreAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ - "name": "instance-MoreAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ - "name": "instance-MoreAccountService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ - "name": "instance-NavigationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ - "name": "instance-NavigationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ - "name": "instance-NavigationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ - "name": "instance-NavigationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ - "name": "instance-NavigationService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ - "name": "instance-OrderCreationJob-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ - "name": "instance-OrderCreationJob-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ - "name": "instance-OrderCreationJob-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ - "name": "instance-OrderCreationJob-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ - "name": "instance-OrderCreationJob-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ - "name": "instance-OrderService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ - "name": "instance-PaymentMethodService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ - "name": "instance-PaymentMethodService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ - "name": "instance-PaymentMethodService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ - "name": "instance-PaymentMethodService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ - "name": "instance-PaymentMethodService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ - "name": "instance-PriceService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ - "name": "instance-PriceService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ - "name": "instance-PriceService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ - "name": "instance-PriceService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ - "name": "instance-PrivatesaleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ - "name": "instance-PrivatesaleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ - "name": "instance-PrivatesaleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ - "name": "instance-PrivatesaleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ - "name": "instance-ProductArrayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ - "name": "instance-ProductArrayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ - "name": "instance-ProductArrayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ - "name": "instance-ProductArrayService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ - "name": "instance-ProductArrayService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ - "name": "instance-ProductDetailService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ - "name": "instance-ProductDetailService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ - "name": "instance-ProductDetailService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ - "name": "instance-ProductDetailService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ - "name": "instance-ProductDetailService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ - "name": "instance-ProductService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ - "name": "instance-ProductService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ - "name": "instance-ProductService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ - "name": "instance-ProfileService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ - "name": "instance-ProfileService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ - "name": "instance-ProfileService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ - "name": "instance-ProfileService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ - "name": "instance-PromoService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ - "name": "instance-PromoService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ - "name": "instance-PromoService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ - "name": "instance-PromotionService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ - "name": "instance-PromotionService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ - "name": "instance-PromotionService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ - "name": "instance-PromotionService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ - "name": "instance-PromotionService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ - "name": "instance-QuestionanswerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ - "name": "instance-QuestionanswerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ - "name": "instance-QuestionanswerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ - "name": "instance-QuestionanswerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ - "name": "instance-RedBaloonService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ - "name": "instance-RedBaloonService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ - "name": "instance-RedBaloonService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ - "name": "instance-ReviewsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ - "name": "instance-ReviewsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ - "name": "instance-ReviewsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ - "name": "instance-ReviewsService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ - "name": "instance-ReviewsService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ - "name": "instance-SearchFacetsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ - "name": "instance-SearchFacetsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ - "name": "instance-SearchFacetsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ - "name": "instance-SearchIndexService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ - "name": "instance-SearchIndexService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ - "name": "instance-SearchIndexService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ - "name": "instance-SearchIndexService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ - "name": "instance-ShopRunnerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ - "name": "instance-ShopRunnerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ - "name": "instance-ShopRunnerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ - "name": "instance-ShopRunnerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ - "name": "instance-ShopRunnerService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ - "name": "instance-TaxService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ - "name": "instance-TaxService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ - "name": "instance-TaxService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ - "name": "instance-TaxService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ - "name": "instance-TaxService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ - "name": "instance-ToggleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ - "name": "instance-ToggleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ - "name": "instance-ToggleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ - "name": "instance-ToggleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ - "name": "instance-UserAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ - "name": "instance-UserAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ - "name": "instance-UserAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ - "name": "instance-UserAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ - "name": "instance-UserAuthenticationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ - "name": "instance-UserAuthenticationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ - "name": "instance-UserAuthenticationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ - "name": "instance-UserAuthenticationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ - "name": "instance-WaitlistOverlayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ - "name": "instance-WaitlistOverlayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ - "name": "instance-WaitlistOverlayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ - "name": "instance-WaitlistService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ - "name": "instance-WaitlistService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ - "name": "instance-WaitlistService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ - "name": "instance-WaitlistService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ - "name": "instance-WaitlistService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ - "name": "instance-Consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ - "name": "instance-Consul-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ - "name": "instance-Consul-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ - "name": "instance-Nginx-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ - "name": "instance-MongoDB-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ - "name": "instance-MongoDB-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ - "name": "instance-MongoDB-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ]␊ - }` - -## should return only Portal - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "__typename": "Portal"␊ - }␊ - }` - -## should return services - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ - "slug": "wordpress-blog-example",␊ - "status": null,␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "slug": "nginx",␊ - "status": null,␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "slug": "wordpress",␊ - "status": null,␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "slug": "nfs",␊ - "status": null,␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "slug": "memcached",␊ - "status": null,␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "slug": "percona",␊ - "status": null,␊ - "branches": [␊ - {␊ - "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ - "name": "Percona",␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ - "name": "percona-primary",␊ - "instances": [␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "slug": "consul",␊ - "status": null,␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ - "slug": "cpexample",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ - "slug": "frontend",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "slug": "mysql",␊ - "status": "ACTIVE",␊ - "branches": [␊ - {␊ - "id": "61eaa840fffdf9d3681710ae65862551b9d975bdd790fcd650aa66e4ccd94bd380a06284dbe1fd9013e2876fb45bfa47e4aff185142fbb54cd369ffa45530f70",␊ - "name": "mysql-primary",␊ - "instances": [␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "f606110c5057af7f55a940ab7f4a53f9b4a07a37ee0ee5c9dc98626d71a3b62dd9cf95d93f0478f712ab73bc5ea602674cee640ebf51c694740f29f10fb4d717",␊ - "name": "mysql",␊ - "instances": [␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ - "slug": "producer",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ - "slug": "api",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - },␊ - {␊ - "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ - "slug": "complex-microservices",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ - "slug": "accountservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ - "slug": "addressservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ - "slug": "bloomreachservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ - "slug": "cartservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ - "slug": "extra service reported by containerpilot: cartservice-https",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ - "slug": "cctokenizationclientservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ - "slug": "checkoutservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ - "slug": "colorswatchservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "66babdef-4512-456c-8d16-b6223766da01",␊ - "slug": "emailmarketingservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ - "slug": "favoriteservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ - "slug": "findinstoreservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ - "slug": "fitpredictorservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ - "slug": "hidefromcatalogservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ - "slug": "internationalcheckoutservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ - "slug": "internationalposervice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ - "slug": "internationalshippingservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ - "slug": "inventoryservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ - "slug": "localizationservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ - "slug": "moreaccountservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ - "slug": "navigationservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ - "slug": "ordercreationjob",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ - "slug": "paymentmethodservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ - "slug": "priceservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ - "slug": "privatesaleservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ - "slug": "productarrayservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ - "slug": "productdetailservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ - "slug": "productservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ - "slug": "profileservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ - "slug": "promoservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ - "slug": "promotionservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ - "slug": "questionanswerservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ - "slug": "redbaloonservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ - "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ - "slug": "reviewsservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ - "slug": "searchfacetsservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ - "slug": "searchindexservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ - "slug": "shoprunnerservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ - "slug": "taxservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ - "slug": "toggleservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ - "slug": "useraccountservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ - "slug": "userauthenticationservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ - "slug": "waitlistoverlayservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ - "slug": "waitlistservice",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ - "slug": "nginx",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ - "slug": "mongodb",␊ - "status": "ACTIVE",␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `{␊ - "services": [␊ - {␊ - "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ - "slug": "nginx",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ - "name": "nginx",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ - "slug": "wordpress",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ - "name": "wordpress_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ - "slug": "nfs",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ - "name": "nfs_01",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ - "slug": "memcached",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ - "name": "memcache_01",␊ - "status": "STOPPING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ - "name": "memcache_02",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ - "name": "memcache_03",␊ - "status": "OFFLINE",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ - "name": "memcache_04",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ - "name": "memcache_05",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ - "slug": "percona",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ - "name": "percona-primary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ - "name": "percona-secondary",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ - "slug": "consul",␊ - "status": null,␊ - "instances": [␊ - {␊ - "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ - "name": "consul",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "primary-consul",␊ - "slug": "consul",␊ - "status": null,␊ - "instances": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "primary-nginx",␊ - "slug": "nginx",␊ - "status": null,␊ - "instances": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "primary-mongodb",␊ - "slug": "mongodb",␊ - "status": null,␊ - "instances": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ - "slug": "frontend",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ - "name": "frontend-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ - "name": "frontend-1",␊ - "status": "FAILED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ - "slug": "mysql",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ - "name": "mysql-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ - "name": "mysql-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ - "name": "mysql-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ - "name": "mysql-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ - "name": "mysql-5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ - "slug": "producer",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ - "name": "producer-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ - "slug": "api",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ - "name": "api-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ - "name": "consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ - "slug": "accountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ - "name": "instance-AccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ - "name": "instance-AccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ - "name": "instance-AccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ - "slug": "addressservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ - "name": "instance-AddressService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ - "name": "instance-AddressService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ - "name": "instance-AddressService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ - "name": "instance-AddressService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ - "name": "instance-AddressService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ - "slug": "bloomreachservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ - "name": "instance-BloomreachService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ - "name": "instance-BloomreachService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ - "name": "instance-BloomreachService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ - "name": "instance-BloomreachService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ - "slug": "cartservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ - "name": "instance-CartService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ - "name": "instance-CartService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ - "name": "instance-CartService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ - "name": "instance-CartService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ - "name": "instance-CartService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ - "slug": "extra service reported by containerpilot: cartservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ - "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ - "slug": "cctokenizationclientservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ - "name": "instance-CCTokenizationClientService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ - "name": "instance-CCTokenizationClientService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ - "name": "instance-CCTokenizationClientService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ - "slug": "checkoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ - "name": "instance-CheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ - "name": "instance-CheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ - "name": "instance-CheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ - "slug": "colorswatchservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ - "name": "instance-ColorSwatchService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ - "name": "instance-ColorSwatchService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ - "name": "instance-ColorSwatchService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ - "name": "instance-ColorSwatchService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ - "name": "instance-ColorSwatchService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "66babdef-4512-456c-8d16-b6223766da01",␊ - "slug": "emailmarketingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ - "name": "instance-EmailMarketingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ - "name": "instance-EmailMarketingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ - "name": "instance-EmailMarketingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ - "slug": "favoriteservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ - "name": "instance-FavoriteService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ - "name": "instance-FavoriteService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ - "name": "instance-FavoriteService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ - "name": "instance-FavoriteService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ - "name": "instance-FavoriteService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ - "slug": "findinstoreservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ - "name": "instance-FindInStoreService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ - "name": "instance-FindInStoreService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ - "name": "instance-FindInStoreService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ - "slug": "fitpredictorservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ - "name": "instance-FitpredictorService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ - "name": "instance-FitpredictorService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ - "name": "instance-FitpredictorService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ - "name": "instance-FitpredictorService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ - "slug": "hidefromcatalogservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ - "name": "instance-HidefromcatalogService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ - "name": "instance-HidefromcatalogService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ - "name": "instance-HidefromcatalogService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ - "name": "instance-HidefromcatalogService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ - "slug": "internationalcheckoutservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ - "name": "instance-InternationalCheckoutService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ - "name": "instance-InternationalCheckoutService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ - "name": "instance-InternationalCheckoutService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ - "name": "instance-InternationalCheckoutService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ - "name": "instance-InternationalCheckoutService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ - "slug": "internationalposervice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ - "name": "instance-InternationalPOService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ - "name": "instance-InternationalPOService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ - "name": "instance-InternationalPOService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ - "name": "instance-InternationalPOService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ - "slug": "internationalshippingservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ - "name": "instance-InternationalShippingService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ - "name": "instance-InternationalShippingService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ - "name": "instance-InternationalShippingService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ - "name": "instance-InternationalShippingService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ - "slug": "inventoryservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ - "name": "instance-InventoryService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ - "name": "instance-InventoryService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ - "name": "instance-InventoryService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ - "name": "instance-InventoryService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ - "slug": "localizationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ - "name": "instance-LocalizationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ - "name": "instance-LocalizationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ - "name": "instance-LocalizationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ - "name": "instance-LocalizationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ - "slug": "moreaccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ - "name": "instance-MoreAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ - "name": "instance-MoreAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ - "name": "instance-MoreAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ - "name": "instance-MoreAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ - "name": "instance-MoreAccountService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ - "slug": "navigationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ - "name": "instance-NavigationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ - "name": "instance-NavigationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ - "name": "instance-NavigationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ - "name": "instance-NavigationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ - "name": "instance-NavigationService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ - "slug": "ordercreationjob",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ - "name": "instance-OrderCreationJob-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ - "name": "instance-OrderCreationJob-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ - "name": "instance-OrderCreationJob-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ - "name": "instance-OrderCreationJob-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ - "name": "instance-OrderCreationJob-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ - "slug": "orderservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ - "name": "instance-OrderService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ - "name": "instance-OrderService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ - "name": "instance-OrderService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ - "name": "instance-OrderService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ - "slug": "paymentmethodservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ - "name": "instance-PaymentMethodService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ - "name": "instance-PaymentMethodService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ - "name": "instance-PaymentMethodService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ - "name": "instance-PaymentMethodService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ - "name": "instance-PaymentMethodService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ - "slug": "paymentservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ - "name": "instance-PaymentService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ - "name": "instance-PaymentService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ - "name": "instance-PaymentService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ - "name": "instance-PaymentService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ - "slug": "priceservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ - "name": "instance-PriceService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ - "name": "instance-PriceService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ - "name": "instance-PriceService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ - "name": "instance-PriceService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ - "slug": "privatesaleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ - "name": "instance-PrivatesaleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ - "name": "instance-PrivatesaleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ - "name": "instance-PrivatesaleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ - "name": "instance-PrivatesaleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ - "slug": "productarrayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ - "name": "instance-ProductArrayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ - "name": "instance-ProductArrayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ - "name": "instance-ProductArrayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ - "name": "instance-ProductArrayService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ - "name": "instance-ProductArrayService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ - "slug": "productdetailservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ - "name": "instance-ProductDetailService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ - "name": "instance-ProductDetailService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ - "name": "instance-ProductDetailService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ - "name": "instance-ProductDetailService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ - "name": "instance-ProductDetailService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ - "slug": "productservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ - "name": "instance-ProductService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ - "name": "instance-ProductService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ - "name": "instance-ProductService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ - "slug": "profileservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ - "name": "instance-ProfileService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ - "name": "instance-ProfileService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ - "name": "instance-ProfileService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ - "name": "instance-ProfileService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ - "slug": "promoservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ - "name": "instance-PromoService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ - "name": "instance-PromoService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ - "name": "instance-PromoService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ - "slug": "promotionservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ - "name": "instance-PromotionService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ - "name": "instance-PromotionService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ - "name": "instance-PromotionService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ - "name": "instance-PromotionService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ - "name": "instance-PromotionService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ - "slug": "questionanswerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ - "name": "instance-QuestionanswerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ - "name": "instance-QuestionanswerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ - "name": "instance-QuestionanswerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ - "name": "instance-QuestionanswerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ - "slug": "redbaloonservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ - "name": "instance-RedBaloonService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ - "name": "instance-RedBaloonService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ - "name": "instance-RedBaloonService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ - "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ - "slug": "reviewsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ - "name": "instance-ReviewsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ - "name": "instance-ReviewsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ - "name": "instance-ReviewsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ - "name": "instance-ReviewsService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ - "name": "instance-ReviewsService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ - "slug": "searchfacetsservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ - "name": "instance-SearchFacetsService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ - "name": "instance-SearchFacetsService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ - "name": "instance-SearchFacetsService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ - "slug": "searchindexservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ - "name": "instance-SearchIndexService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ - "name": "instance-SearchIndexService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ - "name": "instance-SearchIndexService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ - "name": "instance-SearchIndexService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ - "slug": "shoprunnerservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ - "name": "instance-ShopRunnerService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ - "name": "instance-ShopRunnerService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ - "name": "instance-ShopRunnerService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ - "name": "instance-ShopRunnerService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ - "name": "instance-ShopRunnerService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ - "slug": "taxservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ - "name": "instance-TaxService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ - "name": "instance-TaxService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ - "name": "instance-TaxService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ - "name": "instance-TaxService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ - "name": "instance-TaxService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ - "slug": "toggleservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ - "name": "instance-ToggleService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ - "name": "instance-ToggleService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ - "name": "instance-ToggleService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ - "name": "instance-ToggleService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ - "slug": "useraccountservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ - "name": "instance-UserAccountService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ - "name": "instance-UserAccountService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ - "name": "instance-UserAccountService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ - "name": "instance-UserAccountService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ - "slug": "userauthenticationservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ - "name": "instance-UserAuthenticationService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ - "name": "instance-UserAuthenticationService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ - "name": "instance-UserAuthenticationService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ - "name": "instance-UserAuthenticationService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ - "slug": "waitlistoverlayservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ - "name": "instance-WaitlistOverlayService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ - "name": "instance-WaitlistOverlayService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ - "name": "instance-WaitlistOverlayService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ - "slug": "waitlistservice",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ - "name": "instance-WaitlistService-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ - "name": "instance-WaitlistService-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ - "name": "instance-WaitlistService-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ - "name": "instance-WaitlistService-3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ - "name": "instance-WaitlistService-4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ - "slug": "consul",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ - "name": "instance-Consul-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ - "name": "instance-Consul-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ - "name": "instance-Consul-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ - "slug": "nginx",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ - "name": "instance-Nginx-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ - "slug": "mongodb",␊ - "status": "ACTIVE",␊ - "instances": [␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ - "name": "instance-MongoDB-0",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ - "name": "instance-MongoDB-1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ - "name": "instance-MongoDB-2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "__typename": "Service"␊ - }␊ - ]␊ - }` - -## should scale down - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "a159172633fc8678215f9e7976f810e5c41ea55b218a271dbed9a5766a30a4d06a4dffcd5b8e7cbfb2f698026d3b5a74b3116ab657ecca797ada9faf20b26a84",␊ - "name": "test4",␊ - "slug": "test4",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "b1a78d664cc2dc9caf045737c6a00d2a2f110c4a9bc7cd7ef328555667fd34861431bf382b98dccb0a49272ce6332768d431aa1b625ca7ae024fd509aecf602e",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "4abbb4c2ec36ca3585146306042206b9f0b59b9193e318ed4b0a517e4c5d5f23698db0fc79da81067526eb92295ba37b98301dfbad1a0473518d1f1b72a5d555",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "4abbb4c2ec36ca3585146306042206b9f0b59b9193e318ed4b0a517e4c5d5f23698db0fc79da81067526eb92295ba37b98301dfbad1a0473518d1f1b72a5d555",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "dc941446e60c08095f8971a86b948e91ebb9f915242f1c74e7757395aa7ccdd4e504eb119da89a476cc67a80f3b7edf35bdc0bf2d95c4f070edc9decf3b32c2c",␊ - "name": "redis_2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "71f4e11a7184d8c25970427a9deffd92924ef19fe4c05cd3927263a06d1c2803bf8e6a093f621f17efa235b0a0ab14db9fd7783a6232acc39c9dc42784aee740",␊ - "name": "redis_3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "4f6359df57c624e9fa791a54ab060c85b2e4a47797da7c8d43906bb01cb4cffb6009a2c60e7ee93a22348242f6adebed9736d308d49bea9ee482b64bac67dbef",␊ - "name": "redis_4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "d88d7bfac18e5929fc3dda75c63a25515a2890bb20242270e12484a5391a174c1a709b4bece95016e6286f321ff06e079ff85ed08ba19b62e27747fdbe79e173",␊ - "name": "redis_5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "bbd6281fe89904e399ac795a8563194b1806583e9f8bf8db5157bfbae78c6589ddf839fd141f87b8dbb9dede494cdb412dac44fae115a573163b24ccd75b2cf4",␊ - "name": "redis_6",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "d92dfb6449c4fdcd448723c505553dd56435c856f1d0a43d5098f5827c16244645342aa7b40102d2e2d4f12c4149387eb1f1a450e7ab024f110e18f1156fdfdd",␊ - "name": "redis_7",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "f1f0cd919b8b828cc9a85d586d6ae48c17a6add37156e8ed04111796443d65a4d8b109981ac4fb7318db7d3be5499d8c36da26e405cbf9e180a53ad10f89a0e4",␊ - "name": "redis_8",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "45ec2af556809bf7f51cdeffbe6c954676f757018f83c1177c93caa3f548ce97edc2cef60523f64d7efefa2dbb4c92767593415ca9783030fc6c36d371ff08a2",␊ - "name": "redis_9",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "98364de59a908f5bb6757819dca17c958e700da0319baba258e1a551b8c2ad0c60bd19a0939e743c352a2e8176b12fd2bc14e28f31582c4d96482c6fe780ceb7",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "dad133c01518fc5637452c571e0111622f2f2770aa619c5d0a0f83a951017801dac2c6fd58d1f41711d83844b541316f6a990be2efdf3b1960c0b80c43094fca",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `[␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "4abbb4c2ec36ca3585146306042206b9f0b59b9193e318ed4b0a517e4c5d5f23698db0fc79da81067526eb92295ba37b98301dfbad1a0473518d1f1b72a5d555"␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "DELETED"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-deleted",␊ - "payload": "4abbb4c2ec36ca3585146306042206b9f0b59b9193e318ed4b0a517e4c5d5f23698db0fc79da81067526eb92295ba37b98301dfbad1a0473518d1f1b72a5d555"␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "redis_2"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "redis_2"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "dc941446e60c08095f8971a86b948e91ebb9f915242f1c74e7757395aa7ccdd4e504eb119da89a476cc67a80f3b7edf35bdc0bf2d95c4f070edc9decf3b32c2c"␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "DELETED"␊ - }␊ - },␊ - "name": "redis_2"␊ - }␊ - },␊ - {␊ - "name": "instance-deleted",␊ - "payload": "dc941446e60c08095f8971a86b948e91ebb9f915242f1c74e7757395aa7ccdd4e504eb119da89a476cc67a80f3b7edf35bdc0bf2d95c4f070edc9decf3b32c2c"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "SCALING",␊ - "after": "ACTIVE"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "service-scaled",␊ - "payload": "b1a78d664cc2dc9caf045737c6a00d2a2f110c4a9bc7cd7ef328555667fd34861431bf382b98dccb0a49272ce6332768d431aa1b625ca7ae024fd509aecf602e"␊ - }␊ - ]` - -> Snapshot 3 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "a159172633fc8678215f9e7976f810e5c41ea55b218a271dbed9a5766a30a4d06a4dffcd5b8e7cbfb2f698026d3b5a74b3116ab657ecca797ada9faf20b26a84",␊ - "name": "test4",␊ - "slug": "test4",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "b1a78d664cc2dc9caf045737c6a00d2a2f110c4a9bc7cd7ef328555667fd34861431bf382b98dccb0a49272ce6332768d431aa1b625ca7ae024fd509aecf602e",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "4abbb4c2ec36ca3585146306042206b9f0b59b9193e318ed4b0a517e4c5d5f23698db0fc79da81067526eb92295ba37b98301dfbad1a0473518d1f1b72a5d555",␊ - "name": "redis_1",␊ - "status": "PROVISIONING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "71f4e11a7184d8c25970427a9deffd92924ef19fe4c05cd3927263a06d1c2803bf8e6a093f621f17efa235b0a0ab14db9fd7783a6232acc39c9dc42784aee740",␊ - "name": "redis_3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "4f6359df57c624e9fa791a54ab060c85b2e4a47797da7c8d43906bb01cb4cffb6009a2c60e7ee93a22348242f6adebed9736d308d49bea9ee482b64bac67dbef",␊ - "name": "redis_4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "d88d7bfac18e5929fc3dda75c63a25515a2890bb20242270e12484a5391a174c1a709b4bece95016e6286f321ff06e079ff85ed08ba19b62e27747fdbe79e173",␊ - "name": "redis_5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "bbd6281fe89904e399ac795a8563194b1806583e9f8bf8db5157bfbae78c6589ddf839fd141f87b8dbb9dede494cdb412dac44fae115a573163b24ccd75b2cf4",␊ - "name": "redis_6",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "d92dfb6449c4fdcd448723c505553dd56435c856f1d0a43d5098f5827c16244645342aa7b40102d2e2d4f12c4149387eb1f1a450e7ab024f110e18f1156fdfdd",␊ - "name": "redis_7",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "f1f0cd919b8b828cc9a85d586d6ae48c17a6add37156e8ed04111796443d65a4d8b109981ac4fb7318db7d3be5499d8c36da26e405cbf9e180a53ad10f89a0e4",␊ - "name": "redis_8",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "45ec2af556809bf7f51cdeffbe6c954676f757018f83c1177c93caa3f548ce97edc2cef60523f64d7efefa2dbb4c92767593415ca9783030fc6c36d371ff08a2",␊ - "name": "redis_9",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "98364de59a908f5bb6757819dca17c958e700da0319baba258e1a551b8c2ad0c60bd19a0939e743c352a2e8176b12fd2bc14e28f31582c4d96482c6fe780ceb7",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "dad133c01518fc5637452c571e0111622f2f2770aa619c5d0a0f83a951017801dac2c6fd58d1f41711d83844b541316f6a990be2efdf3b1960c0b80c43094fca",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## should scale up - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ - "name": "test3",␊ - "slug": "test3",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "f47ea22ad6fc73bd080f71435574049366b5289a141d1d86e1fcf57ac489c109b2c3b5a672d622eaf5d8010093660629deb36828a96fbf6829d6b7c2c0564052",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e0defdef40fa941d8f37b82bba69709ad48923f298473c91850a5a1b8d4d72a16f27fe4cb1d493637647b1bc54447d25fc037d5ebf15f50fe81d93ff465a5814",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "2430b8fce5a403d0e86d3392a8c05d595a7812978e9c6fa4b27efecb7a69119fd15c6d8c41de874a5feb1e35c9dfcefbeb8035f7ae54c29598c9ff6313f71e1b",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `[␊ - {␊ - "name": "instance-created",␊ - "payload": {␊ - "name": "redis_1",␊ - "deploymentGroupId": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ - "serviceId": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ - "id": "f47ea22ad6fc73bd080f71435574049366b5289a141d1d86e1fcf57ac489c109b2c3b5a672d622eaf5d8010093660629deb36828a96fbf6829d6b7c2c0564052",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-created",␊ - "payload": {␊ - "name": "redis_2",␊ - "deploymentGroupId": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ - "serviceId": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ - "id": "f98597f8e929b9708d4c9648b912449452ba9776ab5604008ef744011860208dd42043165d92ead0ce597dae0b5188504c2b4f86c1f0db6ebceafe4f4f3546dc",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_2"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_2"␊ - }␊ - },␊ - {␊ - "name": "instance-created",␊ - "payload": {␊ - "name": "redis_3",␊ - "deploymentGroupId": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ - "serviceId": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ - "id": "96c55d2b54b8a8cb8ee925fd7be92079bf9c1d8b97db219171648461186297b25b18ef7832ce971560d99a711670712d37a8e9dbdff9ba0cfaf637d9d398856c",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_3"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_3"␊ - }␊ - },␊ - {␊ - "name": "instance-created",␊ - "payload": {␊ - "name": "redis_4",␊ - "deploymentGroupId": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ - "serviceId": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ - "id": "319c50425f10fd50f4ef2d35ab9a51acb7389609e34bfc94190e1ffe4fdf41c74a21c55349faa4ea8ee6e2d1f4ddf76f9e8485685a05d2b0f711c233698d5f21",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_4"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_4"␊ - }␊ - },␊ - {␊ - "name": "instance-created",␊ - "payload": {␊ - "name": "redis_5",␊ - "deploymentGroupId": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ - "serviceId": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ - "id": "6d175b74c58838dcd5a019bd2d6e41d52104b89e701a6bbc43e9a84964055707005628beb8d635c59c1327b0cc228f90eb16af3c133edfe8b9ec657a19faea71",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_5"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_5"␊ - }␊ - },␊ - {␊ - "name": "instance-created",␊ - "payload": {␊ - "name": "redis_6",␊ - "deploymentGroupId": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ - "serviceId": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ - "id": "ce5b968394a75bd5fe7c8d1dabfa746592e50761f679394ac92a5759d89b8d3d7bd95c68e36e9ab46e30414c4bb69d7d71ed4dd9c2baa112d80a83400f928657",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_6"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_6"␊ - }␊ - },␊ - {␊ - "name": "instance-created",␊ - "payload": {␊ - "name": "redis_7",␊ - "deploymentGroupId": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ - "serviceId": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ - "id": "dfefddf632819a81f20847588457313406ba776603de09ad00d8af4c521af84bce56280751348806b57ada3ec58fa799264b42f8b3aa7ddbd459f6ccd1419a34",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_7"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_7"␊ - }␊ - },␊ - {␊ - "name": "instance-created",␊ - "payload": {␊ - "name": "redis_8",␊ - "deploymentGroupId": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ - "serviceId": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ - "id": "17a84f265c667d7385b8fd882f647081bd0ee9e011c2955730a69bc6032e256a9df3104dd51738fbf994d9298095b96a6f850a5a420a6d7321f165cbbc352401",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_8"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_8"␊ - }␊ - },␊ - {␊ - "name": "instance-created",␊ - "payload": {␊ - "name": "redis_9",␊ - "deploymentGroupId": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ - "serviceId": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ - "id": "7534f6aa043a11e0d692f5ea80879cb6957445e1b2de72225d3db13de9a68375dbd0ef7d747790d4818df507fd0d9e2f255444703c1b9599ad673f4f361ac792",␊ - "status": "PROVISIONING"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "PROVISIONING",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_9"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_9"␊ - }␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "SCALING",␊ - "after": "ACTIVE"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "service-scaled",␊ - "payload": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1"␊ - }␊ - ]` - -> Snapshot 3 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ - "name": "test3",␊ - "slug": "test3",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "f47ea22ad6fc73bd080f71435574049366b5289a141d1d86e1fcf57ac489c109b2c3b5a672d622eaf5d8010093660629deb36828a96fbf6829d6b7c2c0564052",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "f47ea22ad6fc73bd080f71435574049366b5289a141d1d86e1fcf57ac489c109b2c3b5a672d622eaf5d8010093660629deb36828a96fbf6829d6b7c2c0564052",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "f98597f8e929b9708d4c9648b912449452ba9776ab5604008ef744011860208dd42043165d92ead0ce597dae0b5188504c2b4f86c1f0db6ebceafe4f4f3546dc",␊ - "name": "redis_2",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "96c55d2b54b8a8cb8ee925fd7be92079bf9c1d8b97db219171648461186297b25b18ef7832ce971560d99a711670712d37a8e9dbdff9ba0cfaf637d9d398856c",␊ - "name": "redis_3",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "319c50425f10fd50f4ef2d35ab9a51acb7389609e34bfc94190e1ffe4fdf41c74a21c55349faa4ea8ee6e2d1f4ddf76f9e8485685a05d2b0f711c233698d5f21",␊ - "name": "redis_4",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "6d175b74c58838dcd5a019bd2d6e41d52104b89e701a6bbc43e9a84964055707005628beb8d635c59c1327b0cc228f90eb16af3c133edfe8b9ec657a19faea71",␊ - "name": "redis_5",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "ce5b968394a75bd5fe7c8d1dabfa746592e50761f679394ac92a5759d89b8d3d7bd95c68e36e9ab46e30414c4bb69d7d71ed4dd9c2baa112d80a83400f928657",␊ - "name": "redis_6",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "dfefddf632819a81f20847588457313406ba776603de09ad00d8af4c521af84bce56280751348806b57ada3ec58fa799264b42f8b3aa7ddbd459f6ccd1419a34",␊ - "name": "redis_7",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "17a84f265c667d7385b8fd882f647081bd0ee9e011c2955730a69bc6032e256a9df3104dd51738fbf994d9298095b96a6f850a5a420a6d7321f165cbbc352401",␊ - "name": "redis_8",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - },␊ - {␊ - "id": "7534f6aa043a11e0d692f5ea80879cb6957445e1b2de72225d3db13de9a68375dbd0ef7d747790d4818df507fd0d9e2f255444703c1b9599ad673f4f361ac792",␊ - "name": "redis_9",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "e0defdef40fa941d8f37b82bba69709ad48923f298473c91850a5a1b8d4d72a16f27fe4cb1d493637647b1bc54447d25fc037d5ebf15f50fe81d93ff465a5814",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "2430b8fce5a403d0e86d3392a8c05d595a7812978e9c6fa4b27efecb7a69119fd15c6d8c41de874a5feb1e35c9dfcefbeb8035f7ae54c29598c9ff6313f71e1b",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## should start Service's - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "e52c2e8b9fa92059a499274ed18bc71249b68d52c368dc0bea19daa59b050b3eca2c236d90b253f9f3a3793d5a70c7fc7c468238616268b79b706c2552e924c8",␊ - "name": "test8",␊ - "slug": "test8",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "ae6bfdd237f8f465ad967083361693c53c9378b786609961806ab9947d9c345653fafecf072869eb4839f39a889e0ba958f34861799032b5a45b7b703c5cdf8b",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "38527697ab8895e7c57bc267b62d81730ec19644bdd5687720e85fc56c0aa0c35107c895bc01b2fc97b49dacf47fc952c9709ee65df8a8fd0e5fac96eb354d6a",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ad0c179e274b48bbbba90d1ed0f469b81ae844f680836afc9cf59cbc25708625cfd3c961c50ecea3a7be2a626358cf86982cb3b89884a52978b3677b0545ad05",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "42f9449a0eae6861b667166b2fa75c0fffb97a7ee4bb173f391eb1eae96587f87b7dbb7b7aa317b19b21d9628735ba8bfaf268e004e08b34bae5fce1be9da0c9",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `[␊ - {␊ - "name": "services-started",␊ - "payload": [␊ - "ae6bfdd237f8f465ad967083361693c53c9378b786609961806ab9947d9c345653fafecf072869eb4839f39a889e0ba958f34861799032b5a45b7b703c5cdf8b",␊ - "ad0c179e274b48bbbba90d1ed0f469b81ae844f680836afc9cf59cbc25708625cfd3c961c50ecea3a7be2a626358cf86982cb3b89884a52978b3677b0545ad05"␊ - ]␊ - }␊ - ]` - -> Snapshot 3 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "e52c2e8b9fa92059a499274ed18bc71249b68d52c368dc0bea19daa59b050b3eca2c236d90b253f9f3a3793d5a70c7fc7c468238616268b79b706c2552e924c8",␊ - "name": "test8",␊ - "slug": "test8",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "ae6bfdd237f8f465ad967083361693c53c9378b786609961806ab9947d9c345653fafecf072869eb4839f39a889e0ba958f34861799032b5a45b7b703c5cdf8b",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "38527697ab8895e7c57bc267b62d81730ec19644bdd5687720e85fc56c0aa0c35107c895bc01b2fc97b49dacf47fc952c9709ee65df8a8fd0e5fac96eb354d6a",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "ad0c179e274b48bbbba90d1ed0f469b81ae844f680836afc9cf59cbc25708625cfd3c961c50ecea3a7be2a626358cf86982cb3b89884a52978b3677b0545ad05",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "42f9449a0eae6861b667166b2fa75c0fffb97a7ee4bb173f391eb1eae96587f87b7dbb7b7aa317b19b21d9628735ba8bfaf268e004e08b34bae5fce1be9da0c9",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## should stop Service's - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ - "name": "test7",␊ - "slug": "test7",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "d7547b5c350c55016dc61b408a361bd5a7a36f759d14e3b3bf175b1699e01626d1f84eef4013b91ac21bf691d30b23878c7058f3a94fec276164b11aa63f58e6",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "cae7a370590dc59f9848634588bb4aaae60762b181fa92f2a24365d5495c7ba7215f587d7c07ce120e64a8dcf0ebfcbbe216727fd16dda868b729cf129529ddb",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "2387fdc33ec2f0e34be6b4f87a447de36886e2101b9f8cdab85b3247a302355ecfe1370b96b99368ea5918886b9599ba58029e1d163dfe4cfbf0053bcfa65628",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `[␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "d7547b5c350c55016dc61b408a361bd5a7a36f759d14e3b3bf175b1699e01626d1f84eef4013b91ac21bf691d30b23878c7058f3a94fec276164b11aa63f58e6"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "service-stopped",␊ - "payload": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "2387fdc33ec2f0e34be6b4f87a447de36886e2101b9f8cdab85b3247a302355ecfe1370b96b99368ea5918886b9599ba58029e1d163dfe4cfbf0053bcfa65628"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "service-stopped",␊ - "payload": "cae7a370590dc59f9848634588bb4aaae60762b181fa92f2a24365d5495c7ba7215f587d7c07ce120e64a8dcf0ebfcbbe216727fd16dda868b729cf129529ddb"␊ - },␊ - {␊ - "name": "services-stopped",␊ - "payload": [␊ - "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ - "cae7a370590dc59f9848634588bb4aaae60762b181fa92f2a24365d5495c7ba7215f587d7c07ce120e64a8dcf0ebfcbbe216727fd16dda868b729cf129529ddb"␊ - ]␊ - }␊ - ]` - -> Snapshot 3 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ - "name": "test7",␊ - "slug": "test7",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ - "name": "redis",␊ - "status": "STOPPED",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "d7547b5c350c55016dc61b408a361bd5a7a36f759d14e3b3bf175b1699e01626d1f84eef4013b91ac21bf691d30b23878c7058f3a94fec276164b11aa63f58e6",␊ - "name": "redis_1",␊ - "status": "STOPPED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "cae7a370590dc59f9848634588bb4aaae60762b181fa92f2a24365d5495c7ba7215f587d7c07ce120e64a8dcf0ebfcbbe216727fd16dda868b729cf129529ddb",␊ - "name": "nginx",␊ - "status": "STOPPED",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "2387fdc33ec2f0e34be6b4f87a447de36886e2101b9f8cdab85b3247a302355ecfe1370b96b99368ea5918886b9599ba58029e1d163dfe4cfbf0053bcfa65628",␊ - "name": "nginx_1",␊ - "status": "STOPPED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## shouldn't delete Service's twice - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "35deb8bfefda461de237a7849ab878ee4cc7b05c5d45a19523dd0db0d036d344240d6e5c27fd5d38887c6f0a2a65bf0445fcbdd9e6df211eb91dc050992e74b7",␊ - "name": "test5",␊ - "slug": "test5",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "cf1ee0f30a7e6e78aeef2023e3fe28c729630121a0691443627e11fbaf12a6fcfb7b4be71f8dcc921c845c5c50583ca9c24a4824e89f3b4de1eacec826e907ef",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "89adb81c93603ffb202ba3f34b638f1db9b0849e407827f085bd89f6baa00dfc9b5b6474c4034caa0e90b3545f9cc1afa71fe079e0f171e053c1c5006ec76c0f",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "f6e48094c0acac8087fc12e2a32d40e55b46247ecbce52029a29094d958af7e2b936a9acfb94ebf3d25c6197681cff7038e9e82ddcc03e31b7b49ebcd3a14674",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `[␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "DELETING"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "cf1ee0f30a7e6e78aeef2023e3fe28c729630121a0691443627e11fbaf12a6fcfb7b4be71f8dcc921c845c5c50583ca9c24a4824e89f3b4de1eacec826e907ef"␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "DELETED"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-deleted",␊ - "payload": "cf1ee0f30a7e6e78aeef2023e3fe28c729630121a0691443627e11fbaf12a6fcfb7b4be71f8dcc921c845c5c50583ca9c24a4824e89f3b4de1eacec826e907ef"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "DELETING",␊ - "after": "DELETED"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "service-deleted",␊ - "payload": "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "DELETING"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "f6e48094c0acac8087fc12e2a32d40e55b46247ecbce52029a29094d958af7e2b936a9acfb94ebf3d25c6197681cff7038e9e82ddcc03e31b7b49ebcd3a14674"␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "DELETED"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-deleted",␊ - "payload": "f6e48094c0acac8087fc12e2a32d40e55b46247ecbce52029a29094d958af7e2b936a9acfb94ebf3d25c6197681cff7038e9e82ddcc03e31b7b49ebcd3a14674"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "DELETING",␊ - "after": "DELETED"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "service-deleted",␊ - "payload": "89adb81c93603ffb202ba3f34b638f1db9b0849e407827f085bd89f6baa00dfc9b5b6474c4034caa0e90b3545f9cc1afa71fe079e0f171e053c1c5006ec76c0f"␊ - },␊ - {␊ - "name": "services-deleted",␊ - "payload": [␊ - "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5",␊ - "89adb81c93603ffb202ba3f34b638f1db9b0849e407827f085bd89f6baa00dfc9b5b6474c4034caa0e90b3545f9cc1afa71fe079e0f171e053c1c5006ec76c0f"␊ - ]␊ - }␊ - ]` - -> Snapshot 3 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "35deb8bfefda461de237a7849ab878ee4cc7b05c5d45a19523dd0db0d036d344240d6e5c27fd5d38887c6f0a2a65bf0445fcbdd9e6df211eb91dc050992e74b7",␊ - "name": "test5",␊ - "slug": "test5",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5",␊ - "name": "redis",␊ - "status": "DELETED",␊ - "slug": "redis",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "89adb81c93603ffb202ba3f34b638f1db9b0849e407827f085bd89f6baa00dfc9b5b6474c4034caa0e90b3545f9cc1afa71fe079e0f171e053c1c5006ec76c0f",␊ - "name": "nginx",␊ - "status": "DELETED",␊ - "slug": "nginx",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 4 - - `[␊ - {␊ - "name": "services-deleted",␊ - "payload": [␊ - "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5",␊ - "89adb81c93603ffb202ba3f34b638f1db9b0849e407827f085bd89f6baa00dfc9b5b6474c4034caa0e90b3545f9cc1afa71fe079e0f171e053c1c5006ec76c0f"␊ - ]␊ - }␊ - ]` - -> Snapshot 5 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "35deb8bfefda461de237a7849ab878ee4cc7b05c5d45a19523dd0db0d036d344240d6e5c27fd5d38887c6f0a2a65bf0445fcbdd9e6df211eb91dc050992e74b7",␊ - "name": "test5",␊ - "slug": "test5",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5",␊ - "name": "redis",␊ - "status": "DELETED",␊ - "slug": "redis",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "89adb81c93603ffb202ba3f34b638f1db9b0849e407827f085bd89f6baa00dfc9b5b6474c4034caa0e90b3545f9cc1afa71fe079e0f171e053c1c5006ec76c0f",␊ - "name": "nginx",␊ - "status": "DELETED",␊ - "slug": "nginx",␊ - "instances": [],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## shouldn't start Service's twice - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "1671f7c68cfc80b56198bc8a91b14c6e5572f4a148db6574a387e140c2a1987861d2ea10e351aad411d6209e6a28e5720c33a0717d1dc477a3909bf21c80b4a1",␊ - "name": "test10",␊ - "slug": "test10",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "35e7a761d3ede0d8a4e5554ee02244817abc2af8ad86aef4a76451681f770accb831e281efbcd7beb8bf5683658930bf0a2640b8c0b36b6cb100e60ebd23763e",␊ - "name": "redis",␊ - "status": "STOPPED",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "edccbc013ab57091f2c1b05518541cc42560dc9f150832661b4f760f1edb316999ec53d7c06e13b23a6e47ed722b2a0b13648fa87de05807025dec6a979f9d1e",␊ - "name": "redis_1",␊ - "status": "STOPPED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "67fd84dd0606e66871df04225e975c59815899a54ea67a2feeb7f44dbbbb4caedcbd18df47e9a9f4d843f63d78df8ea0e901e7208174a148cbc364a8e4409548",␊ - "name": "nginx",␊ - "status": "STOPPED",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "994477e6fdc5d5d24fa4674be683ded6cc53862931da13036ee0216b3f3b0081abe68f4cfcd8b689ec94a266d345ac4eabfcce4edb1afd9156aa98f6ab033cd4",␊ - "name": "nginx_1",␊ - "status": "STOPPED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `[␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-started",␊ - "payload": "edccbc013ab57091f2c1b05518541cc42560dc9f150832661b4f760f1edb316999ec53d7c06e13b23a6e47ed722b2a0b13648fa87de05807025dec6a979f9d1e"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "ACTIVE"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "READY"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "READY",␊ - "after": "RUNNING"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-started",␊ - "payload": "994477e6fdc5d5d24fa4674be683ded6cc53862931da13036ee0216b3f3b0081abe68f4cfcd8b689ec94a266d345ac4eabfcce4edb1afd9156aa98f6ab033cd4"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPED",␊ - "after": "ACTIVE"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "services-started",␊ - "payload": [␊ - "35e7a761d3ede0d8a4e5554ee02244817abc2af8ad86aef4a76451681f770accb831e281efbcd7beb8bf5683658930bf0a2640b8c0b36b6cb100e60ebd23763e",␊ - "67fd84dd0606e66871df04225e975c59815899a54ea67a2feeb7f44dbbbb4caedcbd18df47e9a9f4d843f63d78df8ea0e901e7208174a148cbc364a8e4409548"␊ - ]␊ - }␊ - ]` - -> Snapshot 3 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "1671f7c68cfc80b56198bc8a91b14c6e5572f4a148db6574a387e140c2a1987861d2ea10e351aad411d6209e6a28e5720c33a0717d1dc477a3909bf21c80b4a1",␊ - "name": "test10",␊ - "slug": "test10",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "35e7a761d3ede0d8a4e5554ee02244817abc2af8ad86aef4a76451681f770accb831e281efbcd7beb8bf5683658930bf0a2640b8c0b36b6cb100e60ebd23763e",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "edccbc013ab57091f2c1b05518541cc42560dc9f150832661b4f760f1edb316999ec53d7c06e13b23a6e47ed722b2a0b13648fa87de05807025dec6a979f9d1e",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "67fd84dd0606e66871df04225e975c59815899a54ea67a2feeb7f44dbbbb4caedcbd18df47e9a9f4d843f63d78df8ea0e901e7208174a148cbc364a8e4409548",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "994477e6fdc5d5d24fa4674be683ded6cc53862931da13036ee0216b3f3b0081abe68f4cfcd8b689ec94a266d345ac4eabfcce4edb1afd9156aa98f6ab033cd4",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 4 - - `[␊ - {␊ - "name": "services-started",␊ - "payload": [␊ - "35e7a761d3ede0d8a4e5554ee02244817abc2af8ad86aef4a76451681f770accb831e281efbcd7beb8bf5683658930bf0a2640b8c0b36b6cb100e60ebd23763e",␊ - "67fd84dd0606e66871df04225e975c59815899a54ea67a2feeb7f44dbbbb4caedcbd18df47e9a9f4d843f63d78df8ea0e901e7208174a148cbc364a8e4409548"␊ - ]␊ - }␊ - ]` - -> Snapshot 5 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "1671f7c68cfc80b56198bc8a91b14c6e5572f4a148db6574a387e140c2a1987861d2ea10e351aad411d6209e6a28e5720c33a0717d1dc477a3909bf21c80b4a1",␊ - "name": "test10",␊ - "slug": "test10",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "35e7a761d3ede0d8a4e5554ee02244817abc2af8ad86aef4a76451681f770accb831e281efbcd7beb8bf5683658930bf0a2640b8c0b36b6cb100e60ebd23763e",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "edccbc013ab57091f2c1b05518541cc42560dc9f150832661b4f760f1edb316999ec53d7c06e13b23a6e47ed722b2a0b13648fa87de05807025dec6a979f9d1e",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "67fd84dd0606e66871df04225e975c59815899a54ea67a2feeb7f44dbbbb4caedcbd18df47e9a9f4d843f63d78df8ea0e901e7208174a148cbc364a8e4409548",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "994477e6fdc5d5d24fa4674be683ded6cc53862931da13036ee0216b3f3b0081abe68f4cfcd8b689ec94a266d345ac4eabfcce4edb1afd9156aa98f6ab033cd4",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -## shouldn't stop Service's twice - -> Snapshot 1 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "f81f6c0a9df58b24699b8b1a6751dc6390f0d4cad072831710429abb6740217855b703ddc0748ba4f068b2a6a3406822374952a18516e1235aa42c5373485ff6",␊ - "name": "test9",␊ - "slug": "test9",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "705b61f7ac222f2795abf0c1a76aa671c840f3d029513b00adc9e3120292b7eea9a85eff817b89d1200a80a04ae3617a3287f0ce03a5e2fb9d4b16b2541e7d7f",␊ - "name": "redis",␊ - "status": "ACTIVE",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "a1e6a592de58262bb844fd0a723f7bd998c1c8c897efee3dcc9d76eeec45e4c1369fbc35cc075d421042b610f5c1cd289d1ecb8d38172bea55192826570abed3",␊ - "name": "redis_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "41a808e7f2752d679655a85d590b0faffb34938905f386c505220f43c642d4863e3c53c4339c455d1f9f6669d255bedf08c7795e89b05457a367894d37ffc15a",␊ - "name": "nginx",␊ - "status": "ACTIVE",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "e7846f0a435ceb76b0469c7fb011f18b5a186eaf8176fab1c3cfb0e29ae45e398ac77be8b5c7e47e42175425cae9a928dfba1fe9389414062efbaf013927b430",␊ - "name": "nginx_1",␊ - "status": "RUNNING",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 2 - - `[␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "redis_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "a1e6a592de58262bb844fd0a723f7bd998c1c8c897efee3dcc9d76eeec45e4c1369fbc35cc075d421042b610f5c1cd289d1ecb8d38172bea55192826570abed3"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "slug": "redis"␊ - }␊ - },␊ - {␊ - "name": "service-stopped",␊ - "payload": "705b61f7ac222f2795abf0c1a76aa671c840f3d029513b00adc9e3120292b7eea9a85eff817b89d1200a80a04ae3617a3287f0ce03a5e2fb9d4b16b2541e7d7f"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "ACTIVE",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "RUNNING",␊ - "after": "STOPPING"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "name": "nginx_1"␊ - }␊ - },␊ - {␊ - "name": "instance-stopped",␊ - "payload": "e7846f0a435ceb76b0469c7fb011f18b5a186eaf8176fab1c3cfb0e29ae45e398ac77be8b5c7e47e42175425cae9a928dfba1fe9389414062efbaf013927b430"␊ - },␊ - {␊ - "name": "service-updated",␊ - "payload": {␊ - "updated": {␊ - "status": {␊ - "before": "STOPPING",␊ - "after": "STOPPED"␊ - }␊ - },␊ - "slug": "nginx"␊ - }␊ - },␊ - {␊ - "name": "service-stopped",␊ - "payload": "41a808e7f2752d679655a85d590b0faffb34938905f386c505220f43c642d4863e3c53c4339c455d1f9f6669d255bedf08c7795e89b05457a367894d37ffc15a"␊ - },␊ - {␊ - "name": "services-stopped",␊ - "payload": [␊ - "705b61f7ac222f2795abf0c1a76aa671c840f3d029513b00adc9e3120292b7eea9a85eff817b89d1200a80a04ae3617a3287f0ce03a5e2fb9d4b16b2541e7d7f",␊ - "41a808e7f2752d679655a85d590b0faffb34938905f386c505220f43c642d4863e3c53c4339c455d1f9f6669d255bedf08c7795e89b05457a367894d37ffc15a"␊ - ]␊ - }␊ - ]` - -> Snapshot 3 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "f81f6c0a9df58b24699b8b1a6751dc6390f0d4cad072831710429abb6740217855b703ddc0748ba4f068b2a6a3406822374952a18516e1235aa42c5373485ff6",␊ - "name": "test9",␊ - "slug": "test9",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "705b61f7ac222f2795abf0c1a76aa671c840f3d029513b00adc9e3120292b7eea9a85eff817b89d1200a80a04ae3617a3287f0ce03a5e2fb9d4b16b2541e7d7f",␊ - "name": "redis",␊ - "status": "STOPPED",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "a1e6a592de58262bb844fd0a723f7bd998c1c8c897efee3dcc9d76eeec45e4c1369fbc35cc075d421042b610f5c1cd289d1ecb8d38172bea55192826570abed3",␊ - "name": "redis_1",␊ - "status": "STOPPED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "41a808e7f2752d679655a85d590b0faffb34938905f386c505220f43c642d4863e3c53c4339c455d1f9f6669d255bedf08c7795e89b05457a367894d37ffc15a",␊ - "name": "nginx",␊ - "status": "STOPPED",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "e7846f0a435ceb76b0469c7fb011f18b5a186eaf8176fab1c3cfb0e29ae45e398ac77be8b5c7e47e42175425cae9a928dfba1fe9389414062efbaf013927b430",␊ - "name": "nginx_1",␊ - "status": "STOPPED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` - -> Snapshot 4 - - `[␊ - {␊ - "name": "services-stopped",␊ - "payload": [␊ - "705b61f7ac222f2795abf0c1a76aa671c840f3d029513b00adc9e3120292b7eea9a85eff817b89d1200a80a04ae3617a3287f0ce03a5e2fb9d4b16b2541e7d7f",␊ - "41a808e7f2752d679655a85d590b0faffb34938905f386c505220f43c642d4863e3c53c4339c455d1f9f6669d255bedf08c7795e89b05457a367894d37ffc15a"␊ - ]␊ - }␊ - ]` - -> Snapshot 5 - - `{␊ - "portal": {␊ - "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ - "deploymentGroups": [␊ - {␊ - "id": "f81f6c0a9df58b24699b8b1a6751dc6390f0d4cad072831710429abb6740217855b703ddc0748ba4f068b2a6a3406822374952a18516e1235aa42c5373485ff6",␊ - "name": "test9",␊ - "slug": "test9",␊ - "status": "ACTIVE",␊ - "services": [␊ - {␊ - "id": "705b61f7ac222f2795abf0c1a76aa671c840f3d029513b00adc9e3120292b7eea9a85eff817b89d1200a80a04ae3617a3287f0ce03a5e2fb9d4b16b2541e7d7f",␊ - "name": "redis",␊ - "status": "STOPPED",␊ - "slug": "redis",␊ - "instances": [␊ - {␊ - "id": "a1e6a592de58262bb844fd0a723f7bd998c1c8c897efee3dcc9d76eeec45e4c1369fbc35cc075d421042b610f5c1cd289d1ecb8d38172bea55192826570abed3",␊ - "name": "redis_1",␊ - "status": "STOPPED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - },␊ - {␊ - "id": "41a808e7f2752d679655a85d590b0faffb34938905f386c505220f43c642d4863e3c53c4339c455d1f9f6669d255bedf08c7795e89b05457a367894d37ffc15a",␊ - "name": "nginx",␊ - "status": "STOPPED",␊ - "slug": "nginx",␊ - "instances": [␊ - {␊ - "id": "e7846f0a435ceb76b0469c7fb011f18b5a186eaf8176fab1c3cfb0e29ae45e398ac77be8b5c7e47e42175425cae9a928dfba1fe9389414062efbaf013927b430",␊ - "name": "nginx_1",␊ - "status": "STOPPED",␊ - "__typename": "Instance"␊ - }␊ - ],␊ - "branches": [],␊ - "__typename": "Service"␊ - }␊ - ],␊ - "__typename": "DeploymentGroup"␊ - }␊ - ],␊ - "__typename": "Portal"␊ - }␊ - }` diff --git a/packages/cp-gql-mock-server/test/snapshots/index.js.snap b/packages/cp-gql-mock-server/test/snapshots/index.js.snap deleted file mode 100644 index f06b25ed..00000000 Binary files a/packages/cp-gql-mock-server/test/snapshots/index.js.snap and /dev/null differ diff --git a/packages/cp-gql-mock-server/test/tags/all.gql b/packages/cp-gql-mock-server/test/tags/all.gql deleted file mode 100644 index 5650d2cf..00000000 --- a/packages/cp-gql-mock-server/test/tags/all.gql +++ /dev/null @@ -1,129 +0,0 @@ -query { - portal { - id - user { - id - firstName - lastName - email - login - } - datacenter { - id - name - region - } - deploymentGroups { - id - name - slug - services { - id - hash - name - slug - instances { - id - name - machineId - status - healthy - watches - jobs - } - connections - branches { - name - slug - instances { - id - name - machineId - status - healthy - watches - jobs - } - } - config { - id - environment { - id - name - value - } - image - labels { - id - name - value - } - ports - } - status - } - version { - id - manifest { - id - type - format - environment - files { - id - name - value - } - raw - } - scale { - id - serviceName - replicas - } - plan { - id - type - service - toProcess - processed - machines - } - hasPlan - error - } - history { - id - manifest { - id - type - format - environment - files { - id - name - value - } - raw - } - scale { - id - serviceName - replicas - } - plan { - id - type - service - toProcess - processed - machines - } - hasPlan - error - } - imported - status - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/create-deployment-group.gql b/packages/cp-gql-mock-server/test/tags/create-deployment-group.gql deleted file mode 100644 index 17fc3e98..00000000 --- a/packages/cp-gql-mock-server/test/tags/create-deployment-group.gql +++ /dev/null @@ -1,116 +0,0 @@ -mutation createDeploymentGroup($name: String!) { - createDeploymentGroup(name: $name) { - id - name - slug - status - services { - id - hash - name - slug - status - instances { - id - name - machineId - status - healthy - watches - jobs - } - connections - branches { - name - slug - instances { - id - name - machineId - status - healthy - watches - jobs - } - } - config { - id - environment { - id - name - value - } - image - labels { - id - name - value - } - ports - } - status - } - version { - id - manifest { - id - type - format - environment - files { - id - name - value - } - raw - } - scale { - id - serviceName - replicas - } - plan { - id - type - service - toProcess - processed - machines - } - hasPlan - error - } - history { - id - manifest { - id - type - format - environment - files { - id - name - value - } - raw - } - scale { - id - serviceName - replicas - } - plan { - id - type - service - toProcess - processed - machines - } - hasPlan - error - } - imported - status - } -} diff --git a/packages/cp-gql-mock-server/test/tags/delete-deployment-group.gql b/packages/cp-gql-mock-server/test/tags/delete-deployment-group.gql deleted file mode 100644 index b30db0b9..00000000 --- a/packages/cp-gql-mock-server/test/tags/delete-deployment-group.gql +++ /dev/null @@ -1,14 +0,0 @@ -mutation deleteDeploymentGroup($id: ID!) { - deleteDeploymentGroup(id: $id) { - id - status - services { - slug - status - instances { - name - status - } - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/delete-services.gql b/packages/cp-gql-mock-server/test/tags/delete-services.gql deleted file mode 100644 index 6239e0d1..00000000 --- a/packages/cp-gql-mock-server/test/tags/delete-services.gql +++ /dev/null @@ -1,6 +0,0 @@ -mutation deleteServices($ids: [ID]!) { - deleteServices(ids: $ids) { - id - status - } -} diff --git a/packages/cp-gql-mock-server/test/tags/deployment-group-direct.gql b/packages/cp-gql-mock-server/test/tags/deployment-group-direct.gql deleted file mode 100644 index fa70e956..00000000 --- a/packages/cp-gql-mock-server/test/tags/deployment-group-direct.gql +++ /dev/null @@ -1,17 +0,0 @@ -query DeploymentGroups($id: ID!) { - deploymentGroup(id: $id) { - id - slug - status - services { - id - slug - status - instances { - id - name - status - } - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/deployment-groups-direct-filtered.gql b/packages/cp-gql-mock-server/test/tags/deployment-groups-direct-filtered.gql deleted file mode 100644 index 8c8f5eea..00000000 --- a/packages/cp-gql-mock-server/test/tags/deployment-groups-direct-filtered.gql +++ /dev/null @@ -1,29 +0,0 @@ -query DeploymentGroups($slug: String!) { - deploymentGroups(slug: $slug) { - id - name - slug - status - services { - id - name - status - slug - instances { - id - name - status - } - branches { - id - name - slug - instances { - id - name - status - } - } - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/deployment-groups-direct.gql b/packages/cp-gql-mock-server/test/tags/deployment-groups-direct.gql deleted file mode 100644 index 0492024d..00000000 --- a/packages/cp-gql-mock-server/test/tags/deployment-groups-direct.gql +++ /dev/null @@ -1,17 +0,0 @@ -query { - deploymentGroups { - id - slug - status - services { - id - slug - status - instances { - id - name - status - } - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/deployment-groups-filtered.gql b/packages/cp-gql-mock-server/test/tags/deployment-groups-filtered.gql deleted file mode 100644 index 045fc467..00000000 --- a/packages/cp-gql-mock-server/test/tags/deployment-groups-filtered.gql +++ /dev/null @@ -1,32 +0,0 @@ -query DeploymentGroups($slug: String!) { - portal { - id - deploymentGroups(slug: $slug) { - id - name - slug - status - services { - id - name - status - slug - instances { - id - name - status - } - branches { - id - name - slug - instances { - id - name - status - } - } - } - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/deployment-groups.gql b/packages/cp-gql-mock-server/test/tags/deployment-groups.gql deleted file mode 100644 index fb548d8c..00000000 --- a/packages/cp-gql-mock-server/test/tags/deployment-groups.gql +++ /dev/null @@ -1,10 +0,0 @@ -query { - portal { - id - deploymentGroups { - id - slug - status - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/instance-direct-filtered.gql b/packages/cp-gql-mock-server/test/tags/instance-direct-filtered.gql deleted file mode 100644 index a4ad9f5b..00000000 --- a/packages/cp-gql-mock-server/test/tags/instance-direct-filtered.gql +++ /dev/null @@ -1,7 +0,0 @@ -query Instance($id: ID!) { - instance(id: $id) { - id - name - status - } -} diff --git a/packages/cp-gql-mock-server/test/tags/instances-direct-filtered.gql b/packages/cp-gql-mock-server/test/tags/instances-direct-filtered.gql deleted file mode 100644 index dbf2ddd0..00000000 --- a/packages/cp-gql-mock-server/test/tags/instances-direct-filtered.gql +++ /dev/null @@ -1,7 +0,0 @@ -query Instances($iName: String!) { - instances(name: $iName) { - id - name - status - } -} diff --git a/packages/cp-gql-mock-server/test/tags/instances-direct.gql b/packages/cp-gql-mock-server/test/tags/instances-direct.gql deleted file mode 100644 index 3e317705..00000000 --- a/packages/cp-gql-mock-server/test/tags/instances-direct.gql +++ /dev/null @@ -1,7 +0,0 @@ -query { - instances { - id - name - status - } -} diff --git a/packages/cp-gql-mock-server/test/tags/instances-filtered.gql b/packages/cp-gql-mock-server/test/tags/instances-filtered.gql deleted file mode 100644 index e7c6d871..00000000 --- a/packages/cp-gql-mock-server/test/tags/instances-filtered.gql +++ /dev/null @@ -1,36 +0,0 @@ -query Instances( - $dgSlug: String! - $sSlug: String! - $iName: String! - $biName: String! -) { - portal { - id - deploymentGroups(slug: $dgSlug) { - id - name - slug - status - services(slug: $sSlug) { - id - name - slug - status - instances(name: $iName) { - id - name - status - } - branches { - name - slug - instances(name: $biName) { - id - name - status - } - } - } - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/instances.gql b/packages/cp-gql-mock-server/test/tags/instances.gql deleted file mode 100644 index ea7ac4e0..00000000 --- a/packages/cp-gql-mock-server/test/tags/instances.gql +++ /dev/null @@ -1,30 +0,0 @@ -query { - portal { - id - deploymentGroups { - id - slug - status - services { - id - slug - status - instances { - id - name - status - } - branches { - id - name - slug - instances { - id - name - status - } - } - } - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/portal-only.gql b/packages/cp-gql-mock-server/test/tags/portal-only.gql deleted file mode 100644 index ead70a99..00000000 --- a/packages/cp-gql-mock-server/test/tags/portal-only.gql +++ /dev/null @@ -1,5 +0,0 @@ -query { - portal { - id - } -} diff --git a/packages/cp-gql-mock-server/test/tags/provision-manifest.gql b/packages/cp-gql-mock-server/test/tags/provision-manifest.gql deleted file mode 100644 index 08ae0a8b..00000000 --- a/packages/cp-gql-mock-server/test/tags/provision-manifest.gql +++ /dev/null @@ -1,19 +0,0 @@ -mutation provisionManifest( - $deploymentGroupId: ID! - $type: ManifestType! - $format: ManifestFormat! - $environment: String! - $files: [KeyValueInput]! - $raw: String! -) { - provisionManifest( - deploymentGroupId: $deploymentGroupId - type: $type - format: $format - environment: $environment - files: $files - raw: $raw - ) { - id - } -} diff --git a/packages/cp-gql-mock-server/test/tags/restart-services.gql b/packages/cp-gql-mock-server/test/tags/restart-services.gql deleted file mode 100644 index 350d3dc1..00000000 --- a/packages/cp-gql-mock-server/test/tags/restart-services.gql +++ /dev/null @@ -1,6 +0,0 @@ -mutation restartServices($ids: [ID]!) { - restartServices(ids: $ids) { - id - status - } -} diff --git a/packages/cp-gql-mock-server/test/tags/scale.gql b/packages/cp-gql-mock-server/test/tags/scale.gql deleted file mode 100644 index ab0c3685..00000000 --- a/packages/cp-gql-mock-server/test/tags/scale.gql +++ /dev/null @@ -1,5 +0,0 @@ -mutation scale($serviceId: ID!, $replicas: Int!) { - scale(serviceId: $serviceId, replicas: $replicas) { - id - } -} diff --git a/packages/cp-gql-mock-server/test/tags/service-direct-filtered.gql b/packages/cp-gql-mock-server/test/tags/service-direct-filtered.gql deleted file mode 100644 index 8d8c724d..00000000 --- a/packages/cp-gql-mock-server/test/tags/service-direct-filtered.gql +++ /dev/null @@ -1,12 +0,0 @@ -query Service($id: ID!) { - service(id: $id) { - id - slug - status - instances { - id - name - status - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/services-direct-filtered.gql b/packages/cp-gql-mock-server/test/tags/services-direct-filtered.gql deleted file mode 100644 index 87d2411e..00000000 --- a/packages/cp-gql-mock-server/test/tags/services-direct-filtered.gql +++ /dev/null @@ -1,12 +0,0 @@ -query Services($sSlug: String!) { - services(slug: $sSlug) { - id - slug - status - instances { - id - name - status - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/services-direct.gql b/packages/cp-gql-mock-server/test/tags/services-direct.gql deleted file mode 100644 index d10fc51c..00000000 --- a/packages/cp-gql-mock-server/test/tags/services-direct.gql +++ /dev/null @@ -1,12 +0,0 @@ -query { - services { - id - slug - status - instances { - id - name - status - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/services-filtered.gql b/packages/cp-gql-mock-server/test/tags/services-filtered.gql deleted file mode 100644 index 8d113523..00000000 --- a/packages/cp-gql-mock-server/test/tags/services-filtered.gql +++ /dev/null @@ -1,15 +0,0 @@ -query Services($dgSlug: String!, $sSlug: String!) { - portal { - id - deploymentGroups(slug: $dgSlug) { - id - slug - status - services(slug: $sSlug) { - id - slug - status - } - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/services.gql b/packages/cp-gql-mock-server/test/tags/services.gql deleted file mode 100644 index 68c5f533..00000000 --- a/packages/cp-gql-mock-server/test/tags/services.gql +++ /dev/null @@ -1,24 +0,0 @@ -query { - portal { - id - deploymentGroups { - id - slug - status - services { - id - slug - status - branches { - id - name - instances { - id - name - status - } - } - } - } - } -} diff --git a/packages/cp-gql-mock-server/test/tags/start-services.gql b/packages/cp-gql-mock-server/test/tags/start-services.gql deleted file mode 100644 index c857ff4f..00000000 --- a/packages/cp-gql-mock-server/test/tags/start-services.gql +++ /dev/null @@ -1,6 +0,0 @@ -mutation startServices($ids: [ID]!) { - startServices(ids: $ids) { - id - status - } -} diff --git a/packages/cp-gql-mock-server/test/tags/stop-services.gql b/packages/cp-gql-mock-server/test/tags/stop-services.gql deleted file mode 100644 index 84fb9240..00000000 --- a/packages/cp-gql-mock-server/test/tags/stop-services.gql +++ /dev/null @@ -1,6 +0,0 @@ -mutation stopServices($ids: [ID]!) { - stopServices(ids: $ids) { - id - status - } -} diff --git a/packages/cp-gql-schema/.eslintrc b/packages/cp-gql-schema/.eslintrc deleted file mode 100644 index 14dc524b..00000000 --- a/packages/cp-gql-schema/.eslintrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "joyent-portal" -} diff --git a/packages/cp-gql-schema/.tern-project b/packages/cp-gql-schema/.tern-project deleted file mode 100644 index 6d78dea5..00000000 --- a/packages/cp-gql-schema/.tern-project +++ /dev/null @@ -1,10 +0,0 @@ -{ - "libs": [ - "ecmascript" - ], - "plugins": { - "doc_comment": true, - "local-scope": true, - "node": true - } -} \ No newline at end of file diff --git a/packages/cp-gql-schema/CHANGELOG.md b/packages/cp-gql-schema/CHANGELOG.md deleted file mode 100644 index 2620f585..00000000 --- a/packages/cp-gql-schema/CHANGELOG.md +++ /dev/null @@ -1,13 +0,0 @@ -# Change Log - -All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. - - -## 1.0.4 (2017-05-25) - - - - - -## 1.0.3 (2017-05-25) diff --git a/packages/cp-gql-schema/README.md b/packages/cp-gql-schema/README.md deleted file mode 100644 index 167dd368..00000000 --- a/packages/cp-gql-schema/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# joyent-portal-gql-cp-schema - -[![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0) -[![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg)](https://github.com/RichardLitt/standard-readme) - -[GraphQL](http://graphql.org) schema that represents the data structure and dependencies of the Container Pilot Portal. To be used by other packages so that they can lock and adapt properly to changes made to it, rather than having duplicates of this schema. - -## Table of Contents - -- [Install](#install) -- [Usage](#usage) -- [License](#license) - -## Install - -``` -yarn add --dev joyent-portal-gql-cp-schema -``` - -## Usage - -```js -const containerPilotSchema = require('joyent-portal-gql-cp-schema'); - -containerPilotSchema().then((schema) => console.log(schema)) -``` - -## License - -MPL-2.0 diff --git a/packages/cp-gql-schema/index.js b/packages/cp-gql-schema/index.js deleted file mode 100644 index 0bd76809..00000000 --- a/packages/cp-gql-schema/index.js +++ /dev/null @@ -1,6 +0,0 @@ -const path = require('path'); -const { readFileSync } = require('fs'); - -const file = path.join(__dirname, 'schema.gql'); - -module.exports = readFileSync(file, 'utf-8'); diff --git a/packages/cp-gql-schema/package.json b/packages/cp-gql-schema/package.json deleted file mode 100644 index b3e965a6..00000000 --- a/packages/cp-gql-schema/package.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "joyent-cp-gql-schema", - "version": "1.7.0", - "license": "MPL-2.0", - "repository": "github:yldio/joyent-portal", - "main": "index.js", - "scripts": { - "lint": "eslint . --fix", - "lint-ci": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/cp-gql-schema.xml", - "test": "echo 0", - "test-ci": "echo 0", - "prepublish": "echo 0" - }, - "dependencies": {}, - "devDependencies": { - "eslint": "^4.5.0", - "eslint-config-joyent-portal": "3.0.0" - } -} diff --git a/packages/cp-gql-schema/schema.gql b/packages/cp-gql-schema/schema.gql deleted file mode 100644 index 4377fc62..00000000 --- a/packages/cp-gql-schema/schema.gql +++ /dev/null @@ -1,300 +0,0 @@ -type Portal { - id: ID! - user: User! - datacenter: Datacenter! - deploymentGroups(name: String, slug: String): [DeploymentGroup] -} - -type User { - id: ID! - tritonId: ID! - firstName: String! - lastName: String! - email: String! - login: String! -} - -enum DeploymentGroupStatus { - ACTIVE - PROVISIONING - DELETING - DELETED - UNKNOWN -} - -type DeploymentGroup { - id: ID! - name: String! - slug: String! - services(name: String, slug: String): [Service] - version: Version - history: [Version] - imported: Boolean - status: DeploymentGroupStatus -} - -type ServiceScale { - id: ID! - serviceName: String! - replicas: Int! -} - -enum ConvergenceActionType { - NOOP - CREATE - RECREATE - REMOVE - START - EXISTING # special status to mark existing ids in previous version -} - -type ConvergenceAction { - id: ID! - type: ConvergenceActionType! - service: String! # service name - toProcess: Int # merely used for book keeping - processed: [String] # merely used for book keeping - machines: [String]! # current instance machine ids -} - -type Version { - id: ID! - manifest: Manifest - scale(serviceName: String): [ServiceScale] - plan: [ConvergenceAction] - hasPlan: Boolean - error: String -} - -enum ManifestType { - COMPOSE - MARIPOSA -} - -enum ManifestFormat { - JSON - YAML -} - -type KeyValue { - id: ID! - name: String! - value: String! -} - -input KeyValueInput { - id: ID - name: String! - value: String! -} - -type Manifest { - id: ID! - type: ManifestType! - format: ManifestFormat! - environment: String! - files: [KeyValue] - raw: String! -} - -enum ServiceStatus { - ACTIVE # this doesn't mean that the instances are all running - PROVISIONING - SCALING - STOPPING - STOPPED - DELETING - DELETED - RESTARTING - UNKNOWN -} - -type ServiceConfig { - id: ID! - package: Package # we don't have this in current mock data - environment: [KeyValue] - image: String # used only for config - labels: [KeyValue] - ports: [String] -} - -# immutable -type Service { - id: ID! # unique id for db row - hash: String # unique id for version of service - name: String! # human readable name - slug: String! - instances(name: String, machineId: ID, status: InstanceStatus): [Instance]! - connections: [String] # list of serviceIds - branches(name: String, slug: String): [Service] - config: ServiceConfig - status: ServiceStatus -} - -# for metrics max / min (I guess) -type Package { - id: ID! - name: String! - type: String! - memory: Float! - disk: Float! - swap: Float! - lwps: Int! - vcpus: Int! - version: String! - group: String! -} - -enum InstanceStatus { - PROVISIONING - READY - ACTIVE # vm only: When used in ListVms, denotes machines that are not 'destroyed' or 'failed' - RUNNING - STOPPING - STOPPED - OFFLINE - DELETED - DESTROYED # vm only - FAILED - INCOMPLETE # vm only - UNKNOWN -} - -enum HealthyStatus { - HEALTHY - UNHEALTHY - MAINTENANCE - UNKNOWN - UNAVAILABLE -} - -type Metric { - time: String! - value: Float! -} - -enum MetricName { - AVG_MEM_BYTES - AVG_LOAD_PERCENT - AGG_NETWORK_BYTES -} - -type InstanceMetric { - instance: String! - name: MetricName! - start: String! - end: String! - metrics: [Metric] -} - -type Instance { - id: ID! - name: String! - machineId: ID! - primaryIp: String - status: InstanceStatus - healthy: HealthyStatus - watches: [String] - jobs: [String] - metrics(names: [MetricName]!, start: String!, end: String!): [InstanceMetric]! -} - -type Datacenter { - id: ID! - name: String! - region: String! -} - -# we probably wont use some of these queries or arguments -# but this way we expose the entire db through gql -type Query { - portal: Portal - user: User - deploymentGroups(name: String, slug: String): [DeploymentGroup] - deploymentGroup(id: ID, name: String, slug: String): DeploymentGroup - serviceScales(serviceName: String, versionId: ID): [ServiceScale] - serviceScale(id: ID!): ServiceScale - convergenceActions( - type: ConvergenceActionType - service: String - versionId: ID - ): [ConvergenceAction] - convergenceAction(id: ID!): ConvergenceAction - versions(manifestId: ID, deploymentGroupId: ID): [Version] - version(id: ID, manifestId: ID): Version - manifests(type: String, deploymentGroupId: ID): [Manifest] - manifest(id: ID!): Manifest - services( - name: String - slug: String - parentId: ID - deploymentGroupId: ID - deploymentGroupSlug: String - ): [Service] - service(id: ID, hash: ID): Service - packages( - name: String - type: String - memory: Int - disk: Int - swap: Int - lwps: Int - vcpus: Int - version: String - group: String - ): [Package] - package(id: ID!): Package - instances( - name: String - machineId: ID - status: InstanceStatus - serviceId: ID - serviceSlug: String - deploymentGroupId: ID - deploymentGroupSlug: String - ): [Instance] - instance(id: ID!): Instance - datacenter(id: ID, region: String): Datacenter - datacenters: [Datacenter] - config( - deploymentGroupName: String! - type: ManifestType! - format: ManifestFormat! - environment: String! - files: [KeyValueInput]! - raw: String! - ): [Service] - importableDeploymentGroups: [DeploymentGroup] - # start and end should be .toISOString() date strings - metrics( - deploymentGroupId: ID! - names: [MetricName]! - instances: [ID]! - start: String! - end: String! - ): [InstanceMetric] -} - -type Mutation { - createDeploymentGroup(name: String!): DeploymentGroup - updateDeploymentGroup(id: ID!, name: String!): DeploymentGroup - deleteDeploymentGroup(id: ID!): DeploymentGroup - provisionManifest( - deploymentGroupId: ID! - type: ManifestType! - format: ManifestFormat! - environment: String! - files: [KeyValueInput]! - raw: String! - ): Version - scale(serviceId: ID!, replicas: Int!): Version - stopServices(ids: [ID]!): [Service] - startServices(ids: [ID]!): [Service] - restartServices(ids: [ID]!): [Service] - deleteServices(ids: [ID]!): [Service] - stopInstances(ids: [ID]!): [Instance] - startInstances(ids: [ID]!): [Instance] - restartInstances(ids: [ID]!): [Instance] - importDeploymentGroup(deploymentGroupSlug: String!): DeploymentGroup - deleteDeploymentGroup(id: ID!): DeploymentGroup -} diff --git a/packages/cp-rdb-bootstrap/.eslintrc b/packages/cp-rdb-bootstrap/.eslintrc deleted file mode 100644 index 14dc524b..00000000 --- a/packages/cp-rdb-bootstrap/.eslintrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "joyent-portal" -} diff --git a/packages/cp-rdb-bootstrap/.tern-project b/packages/cp-rdb-bootstrap/.tern-project deleted file mode 100644 index 6d78dea5..00000000 --- a/packages/cp-rdb-bootstrap/.tern-project +++ /dev/null @@ -1,10 +0,0 @@ -{ - "libs": [ - "ecmascript" - ], - "plugins": { - "doc_comment": true, - "local-scope": true, - "node": true - } -} \ No newline at end of file diff --git a/packages/cp-rdb-bootstrap/CHANGELOG.md b/packages/cp-rdb-bootstrap/CHANGELOG.md deleted file mode 100644 index 2620f585..00000000 --- a/packages/cp-rdb-bootstrap/CHANGELOG.md +++ /dev/null @@ -1,13 +0,0 @@ -# Change Log - -All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. - - -## 1.0.4 (2017-05-25) - - - - - -## 1.0.3 (2017-05-25) diff --git a/packages/cp-rdb-bootstrap/package.json b/packages/cp-rdb-bootstrap/package.json deleted file mode 100644 index 67c9f706..00000000 --- a/packages/cp-rdb-bootstrap/package.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "joyent-cp-rdb-bootstrap", - "version": "1.0.4", - "private": true, - "license": "MPL-2.0", - "repository": "github:yldio/joyent-portal", - "scripts": { - "lint": "eslint . --fix", - "lint-ci": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/cp-rdb-bootstrap.xml", - "test": "echo 0", - "test-ci": "echo 0", - "prepublish": "echo 0" - }, - "devDependencies": { - "eslint": "^4.5.0", - "eslint-config-joyent-portal": "3.0.0" - } -} diff --git a/packages/docker-compose-client/.eslintignore b/packages/docker-compose-client/.eslintignore deleted file mode 100644 index 2b7cecf7..00000000 --- a/packages/docker-compose-client/.eslintignore +++ /dev/null @@ -1,2 +0,0 @@ -.nyc_output -coverage \ No newline at end of file diff --git a/packages/docker-compose-client/.eslintrc b/packages/docker-compose-client/.eslintrc deleted file mode 100644 index 14dc524b..00000000 --- a/packages/docker-compose-client/.eslintrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "joyent-portal" -} diff --git a/packages/docker-compose-client/.tern-project b/packages/docker-compose-client/.tern-project deleted file mode 100644 index 6d78dea5..00000000 --- a/packages/docker-compose-client/.tern-project +++ /dev/null @@ -1,10 +0,0 @@ -{ - "libs": [ - "ecmascript" - ], - "plugins": { - "doc_comment": true, - "local-scope": true, - "node": true - } -} \ No newline at end of file diff --git a/packages/docker-compose-client/README.md b/packages/docker-compose-client/README.md deleted file mode 100644 index f784a3c0..00000000 --- a/packages/docker-compose-client/README.md +++ /dev/null @@ -1,75 +0,0 @@ -# docker-compose-client - -[![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0) -[![npm](https://img.shields.io/npm/v/docker-compose-client.svg)](https://npmjs.com/package/docker-compose-client) -[![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg)](https://github.com/RichardLitt/standard-readme) - -Server that exposes [CloudApi](https://apidocs.joyent.com/cloudapi/) through [GraphQL](http://graphql.org). - -## Table of Contents - -- [Install](#install) -- [Server](#server) -- [Usage](#usage) -- [License](#license) - -## Install - -``` -yarn add docker-compose-client -``` - -## Server - -### build - -``` -λ git clone git@github.com:yldio/docker-compose-api.git -λ cd docker-compose-api -λ docker build -t docker-compose-api . -``` - -### run - -**local**: - -``` -λ docker run -p 4242:4242 -d docker-compose-api -``` - -**remote**: -``` -λ docker run \ --v "/local/path/to/docker/cert":"/usr/src/cert" \ --e DOCKER_CERT_PATH=/usr/src/cert \ --e DOCKER_HOST="http://us-sw-1.docker.joyent.com:2376" \ --e DOCKER_CLIENT_TIMEOUT=300 \ --e COMPOSE_HTTP_TIMEOUT=300 \ --p 4242:4242 \ --d \ -docker-compose-api -``` - -## Usage - -```js -const client = new DockerComposeClient(); - -client.provision({ - projectName: 'docker-compose-client', - manifest: ` - hello: - image: hello-world:latest - world: - image: consul:latest - node: - image: node:latest - ` -}, (err, res, more) => { - // can be called multiple times, check 'more' if that is the case -}); -``` - -## License - -MPL-2.0 diff --git a/packages/docker-compose-client/lib/index.js b/packages/docker-compose-client/lib/index.js deleted file mode 100644 index 47967430..00000000 --- a/packages/docker-compose-client/lib/index.js +++ /dev/null @@ -1,64 +0,0 @@ -const { Client } = require('zerorpc'); -const EventEmitter = require('events'); - -module.exports = class DockerComposeClient extends EventEmitter { - constructor(endpoint = 'tcp://0.0.0.0:4242', timeout = 60 * 30) { - super(); - - this.client = new Client({ - heartbeatInterval: 60 * 4 * 1000, // 4m - timeout // 30m - }); - - this.client.on('error', err => this.emit('error', err)); - this.client.connect(endpoint); - } - - _invoke(method, options, manifest, cb) { - this.client.invoke(method, options, manifest, cb); - } - - close() { - this.client.close(); - } - - provision({ projectName, environment, manifest, files }, cb) { - this._invoke( - 'up', - { - // eslint-disable-next-line camelcase - project_name: projectName, - files, - environment - }, - manifest, - cb - ); - } - - scale({ projectName, services, environment, manifest, files }, cb) { - const options = { - environment, - // eslint-disable-next-line camelcase - project_name: projectName, - files, - services: Object.keys(services).map(name => ({ - name, - num: services[name] - })) - }; - - this._invoke('scale', options, manifest, cb); - } - - config({ projectName, environment, manifest, files }, cb) { - const options = { - // eslint-disable-next-line camelcase - project_name: projectName, - files, - environment - }; - - this._invoke('config', options, manifest, cb); - } -}; diff --git a/packages/docker-compose-client/package.json b/packages/docker-compose-client/package.json deleted file mode 100644 index 00504848..00000000 --- a/packages/docker-compose-client/package.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "docker-compose-client", - "version": "1.1.0", - "license": "MPL-2.0", - "repository": "github:yldio/joyent-portal", - "main": "lib", - "scripts": { - "lint": "eslint . --fix", - "lint-ci": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/docker-compose-client.xml", - "test": "lab -t 100", - "test-ci": "lab -t 100 -r console -o stdout -r tap -o $CIRCLE_TEST_REPORTS/test/docker-compose-client.xml", - "prepublish": "echo 0" - }, - "dependencies": { - "zerorpc": "^0.9.7" - }, - "devDependencies": { - "code": "^4.1.0", - "eslint": "^4.5.0", - "eslint-config-joyent-portal": "3.0.0", - "js-yaml": "^3.9.1", - "lab": "^14.2.2" - } -} diff --git a/packages/docker-compose-client/test/index.js b/packages/docker-compose-client/test/index.js deleted file mode 100644 index e4688968..00000000 --- a/packages/docker-compose-client/test/index.js +++ /dev/null @@ -1,187 +0,0 @@ -const { expect } = require('code'); -const Lab = require('lab'); -const Package = require('../package.json'); -const { safeLoad } = require('js-yaml'); -const { Server } = require('zerorpc'); - -// Test shortcuts - -const lab = Lab.script(); -exports.lab = lab; -const after = lab.after; -const it = lab.it; - -const projectName = Package.name; -const endpoint = 'tcp://0.0.0.0:4040'; -const DockerComposeClient = require('../'); -const client = new DockerComposeClient(endpoint); - -const server = new Server({ - // eslint-disable-next-line object-shorthand - up: function(options, manifest, fn) { - if (typeof options !== 'object') { - return fn(new Error('Expected options')); - } - - if (typeof options.project_name !== 'string') { - return fn(new Error('Expected project name')); - } - - if (typeof manifest !== 'string') { - return fn(new Error('Expected manifest')); - } - - try { - safeLoad(manifest); - } catch (err) { - return fn(err); - } - - fn(null, { - projectName: options.project_name - }); - }, - // eslint-disable-next-line object-shorthand - scale: function(options, manifest, fn) { - if (typeof options !== 'object') { - return fn(new Error('Expected options')); - } - - if (typeof options.project_name !== 'string') { - return fn(new Error('Expected project name')); - } - - if (!Array.isArray(options.services)) { - return fn(new Error('Expected services')); - } - - if (typeof manifest !== 'string') { - return fn(new Error('Expected manifest')); - } - - try { - safeLoad(manifest); - } catch (err) { - return fn(err); - } - - fn(null, { - projectName: options.project_name, - services: options.services - }); - }, - // eslint-disable-next-line object-shorthand - config: function(options, manifest, fn) { - if (typeof options !== 'object') { - return fn(new Error('Expected options')); - } - - if (typeof options.project_name !== 'string') { - return fn(new Error('Expected project name')); - } - - if (typeof manifest !== 'string') { - return fn(new Error('Expected manifest')); - } - - try { - safeLoad(manifest); - } catch (err) { - return fn(err); - } - - fn(null, { - projectName: options.project_name - }); - } -}); - -server.bind(endpoint); - -it('provision()', done => { - const manifest = ` - hello: - image: hello-world:latest - world: - image: consul:latest - node: - image: node:latest - `; - - client.provision({ projectName, manifest }, (err, res) => { - expect(err).to.not.exist(); - - expect(res.projectName).to.equal(projectName); - done(); - }); -}); - -it('scale()', done => { - const manifest = ` - hello: - image: hello-world:latest - world: - image: consul:latest - node: - image: node:latest - `; - - client.scale( - { - projectName, - services: { - hello: 2, - world: 3 - }, - manifest - }, - (err, res) => { - expect(err).to.not.exist(); - - expect(res).to.equal({ - projectName, - services: [{ name: 'hello', num: 2 }, { name: 'world', num: 3 }] - }); - done(); - } - ); -}); - -it('config()', done => { - const manifest = ` - hello: - image: hello-world:latest - world: - image: consul:latest - node: - image: node:latest - `; - - client.config( - { - projectName, - services: ['hello'], - manifest - }, - (err, res) => { - expect(err).to.not.exist(); - expect(res).to.exist(); - done(); - } - ); -}); - -it('handles errors', done => { - client.once('error', err => { - expect(err).to.exist(); - done(); - }); - - client.client.emit('error', new Error('test')); -}); - -after(done => { - client.close(); - server.close(); - done(); -}); diff --git a/packages/portal-api/.dockerignore b/packages/portal-api/.dockerignore deleted file mode 100644 index 3e3c0c8c..00000000 --- a/packages/portal-api/.dockerignore +++ /dev/null @@ -1,4 +0,0 @@ -node_modules -coverage -.nyc_output -package-lock.json diff --git a/packages/portal-api/.gitignore b/packages/portal-api/.gitignore deleted file mode 100644 index 825fc67c..00000000 --- a/packages/portal-api/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules -.DS_Store -npm-debug.log diff --git a/packages/portal-api/.travis.yml b/packages/portal-api/.travis.yml deleted file mode 100644 index 58df036f..00000000 --- a/packages/portal-api/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: node_js - -node_js: - - "6" - - "7" - - "node" - -sudo: false diff --git a/packages/portal-api/LICENSE b/packages/portal-api/LICENSE deleted file mode 100644 index be2cc4df..00000000 --- a/packages/portal-api/LICENSE +++ /dev/null @@ -1,362 +0,0 @@ -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. "Contributor" - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. "Contributor Version" - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the terms of - a Secondary License. - -1.6. "Executable Form" - - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. - -1.8. "License" - - means this document. - -1.9. "Licensable" - - means having the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently, any and all of the - rights conveyed by this License. - -1.10. "Modifications" - - means any of the following: - - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor - - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the License, - by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" - - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, "control" means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of - its Contributions. - - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights to - grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter the - recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the - Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, - judicial order, or regulation then You must: (a) comply with the terms of - this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a - text file included with all distributions of the Covered Software under - this License. Except to the extent prohibited by statute or regulation, - such description must be sufficiently detailed for a recipient of ordinary - skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing - basis, if such Contributor fails to notify You of the non-compliance by - some reasonable means prior to 60 days after You have come back into - compliance. Moreover, Your grants from a particular Contributor are - reinstated on an ongoing basis if such Contributor notifies You of the - non-compliance by some reasonable means, this is the first time You have - received notice of non-compliance with this License from such - Contributor, and You become compliant prior to 30 days after Your receipt - of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, - without warranty of any kind, either expressed, implied, or statutory, - including, without limitation, warranties that the Covered Software is free - of defects, merchantable, fit for a particular purpose or non-infringing. - The entire risk as to the quality and performance of the Covered Software - is with You. Should any Covered Software prove defective in any respect, - You (not any Contributor) assume the cost of any necessary servicing, - repair, or correction. This disclaimer of warranty constitutes an essential - part of this License. No use of any Covered Software is authorized under - this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from - such party's negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of - incidental or consequential damages, so this exclusion and limitation may - not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts - of a jurisdiction where the defendant maintains its principal place of - business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. Nothing - in this Section shall prevent a party's ability to bring cross-claims or - counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides that - the language of a contract shall be construed against the drafter shall not - be used to construe this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses If You choose to distribute Source Code Form that is - Incompatible With Secondary Licenses under the terms of this version of - the License, the notice described in Exhibit B of this License must be - attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, -then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a -notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - - This Source Code Form is "Incompatible - With Secondary Licenses", as defined by - the Mozilla Public License, v. 2.0. diff --git a/packages/portal-api/README.md b/packages/portal-api/README.md deleted file mode 100644 index dcd33992..00000000 --- a/packages/portal-api/README.md +++ /dev/null @@ -1,14 +0,0 @@ -ContainerPilot Monitor API - -[![Build Status](https://secure.travis-ci.org/geek/portal-api.svg)](http://travis-ci.org/geek/portal-api) - -Lead Maintainer: [Wyatt Preul](https://github.com/geek) - - -## Example usage - -``` -yarn start -``` - -Navigate to http://localhost:8000/graphiql to run graphQL queries. Navigate to http://localhost:8000/documentation for documentation on each route. diff --git a/packages/portal-api/bootstrap-data.js b/packages/portal-api/bootstrap-data.js deleted file mode 100644 index 7fa1d3c9..00000000 --- a/packages/portal-api/bootstrap-data.js +++ /dev/null @@ -1,131 +0,0 @@ -'use strict'; - -const Triton = require('triton'); -const Url = require('url'); -const Path = require('path'); -const Fs = require('fs'); - -const Data = require('./lib/data'); - -const { - DOCKER_HOST, - DOCKER_CERT_PATH, - SDC_URL, - SDC_ACCOUNT, - SDC_KEY_ID -} = process.env; - -const DOCKER_HOST_URL = DOCKER_HOST ? - Url.parse(DOCKER_HOST) : - {}; - -const settings = { - db: { - host: process.env.RETHINK_HOST || 'localhost' - }, - docker: { - protocol: 'https', - host: DOCKER_HOST_URL.hostname, - port: DOCKER_HOST_URL.port, - ca: DOCKER_CERT_PATH ? - Fs.readFileSync(Path.join(DOCKER_CERT_PATH, 'ca.pem')) : - undefined, - cert: DOCKER_CERT_PATH ? - Fs.readFileSync(Path.join(DOCKER_CERT_PATH, 'cert.pem')) : - undefined, - key: DOCKER_CERT_PATH ? - Fs.readFileSync(Path.join(DOCKER_CERT_PATH, 'key.pem')) : - undefined - }, - triton: { - url: SDC_URL, - account: SDC_ACCOUNT, - keyId: SDC_KEY_ID - } -}; - -const ifError = function (err) { - if (err) { - console.error(err); - process.exit(1); - } - - process.exit(0); -}; - -const bootstrap = function (cb) { - const data = new Data(settings); - const region = process.env.TRITON_DC || 'us-sw-1'; - - data.connect((err) => { - if (err) { - return cb(err); - } - - data.getDatacenters((err, datacenters) => { - if (err) { - return cb(err); - } - - // Don't continue since data is already bootstrapped - if (datacenters && datacenters.length) { - return cb(); - } - - data.createDatacenter({ - region, - name: region - }, (err, datacenter) => { - if (err) { - return cb(err); - } - - Triton.createClient({ - profile: settings.triton - }, (err, { cloudapi }) => { - if (err) { - return cb(err); - } - - cloudapi.getAccount((err, { - id, - firstName, - lastName, - email, - login - }) => { - if (err) { - return cb(err); - } - - data.createUser({ - tritonId: id, - firstName, - lastName, - email, - login - }, (err, user) => { - if (err) { - return cb(err); - } - - data.createPortal({ - user, - datacenter - }, (err, portal) => { - if (err) { - return cb(err); - } - - console.log('data bootstrapped'); - cb(); - }); - }); - }); - }); - }); - }); - }); -}; - -bootstrap(ifError); diff --git a/packages/portal-api/lib/data/index.js b/packages/portal-api/lib/data/index.js deleted file mode 100644 index e636f612..00000000 --- a/packages/portal-api/lib/data/index.js +++ /dev/null @@ -1,2685 +0,0 @@ - -'use strict'; - -// core modules -const EventEmitter = require('events'); -const Fs = require('fs'); -const Path = require('path'); -const Url = require('url'); -const Util = require('util'); - -// 3rd party modules -const Boom = require('boom'); -const DockerClient = require('docker-compose-client'); -const Dockerode = require('dockerode'); -const ForceArray = require('force-array'); -const Hoek = require('hoek'); -const Find = require('lodash.find'); -const Flatten = require('lodash.flatten'); -const Get = require('lodash.get'); -const UniqBy = require('lodash.uniqby'); -const ParamCase = require('param-case'); -const Penseur = require('penseur'); -const Prometheus = require('prom-query'); -const Triton = require('triton'); -const Hasha = require('hasha'); -const Uuid = require('uuid/v4'); -const VAsync = require('vasync'); - -// local modules -const Transform = require('./transform'); -const { DEPLOYMENT_GROUP, SERVICE, HASH } = require('../watch/machines'); - - -const NON_IMPORTABLE_STATES = [ - 'EXITED', - 'DELETED', - 'STOPPED', - 'FAILED' -]; - -const NEW_INSTANCE_ID = '__NEW__'; -const UNKNOWN_INSTANCE_ID = '__UNKNOWN__'; - -const DOCKER_HOST_URL = process.env.DOCKER_HOST ? Url.parse(process.env.DOCKER_HOST) : {}; - -const internals = { - defaults: { - name: 'portal', - db: { - host: 'rethinkdb' - }, - docker: { - protocol: 'https', - host: DOCKER_HOST_URL.hostname, - port: DOCKER_HOST_URL.port, - ca: process.env.DOCKER_CERT_PATH ? - Fs.readFileSync(Path.join(process.env.DOCKER_CERT_PATH, 'ca.pem')) : - undefined, - cert: process.env.DOCKER_CERT_PATH ? - Fs.readFileSync(Path.join(process.env.DOCKER_CERT_PATH, 'cert.pem')) : - undefined, - key: process.env.DOCKER_CERT_PATH ? - Fs.readFileSync(Path.join(process.env.DOCKER_CERT_PATH, 'key.pem')) : - undefined - }, - triton: { - url: process.env.SDC_URL, - account: process.env.SDC_ACCOUNT, - keyId: process.env.SDC_KEY_ID - }, - dockerComposeHost: 'tcp://compose-api:4242' - }, - tables: { - 'portals': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false }, - 'datacenters': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false }, - 'deployment_groups': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false }, - 'versions': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false }, - 'manifests': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false }, - 'services': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false }, - 'packages': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false }, - 'instances': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false }, - 'users': { id: { type: 'uuid' }, primary: 'id', secondary: false, purge: false } - }, - resolveCb: (resolve, reject) => { - return (err, ...args) => { - if (err) { - return reject(err); - } - - resolve(...args); - }; - }, - fromKeyValueToDict: (kv) => { - return kv.reduce((acc, { name, value }) => { - return Object.assign(acc, { - [name]: value - }); - }, {}); - }, - isNotFound: (err) => { - return err && (err['typeof'] === Boom.notFound); - }, - metricNames: [ - 'mem_agg_usage', - 'cpu_sys_usage', - 'net_agg_bytes_in' - ], - metricNameEnum: [ - 'AVG_MEM_BYTES', - 'AVG_LOAD_PERCENT', - 'AGG_NETWORK_BYTES' - ] -}; - - -class Data extends EventEmitter { - constructor (options) { - super(); - - this._settings = Hoek.applyToDefaults(internals.defaults, options || {}); - - // Penseur will assert that the options are correct - this._db = new Penseur.Db(this._settings.name, this._settings.db); - this._dockerCompose = new DockerClient(this._settings.dockerComposeHost); - this._docker = new Dockerode(this._settings.docker); - this._machines = null; - this._triton = null; - this._server = this._settings.server; - - Triton.createClient({ - profile: this._settings.triton - }, (err, client) => { - if (err) { - this.emit('error', err); - return; - } - - this._triton = client.cloudapi; - }); - - this._dockerCompose.on('error', (err) => { - this.emit('error', err); - }); - } - - setMachinesWatcher (machinesWatcher) { - this._machines = machinesWatcher; - } - - connect (cb) { - if (!this._db._connection) { - return this._db._connect((err) => { - if (err) { - return cb(err); - } - - return this.connect(cb); - }); - } - - this._db._exists((err, exists) => { - if (err) { - return cb(err); - } - - if (exists) { - const tables = this._db._normalizeTables(internals.tables); - this._db.table(tables); - - return cb(); - } - - this._db.establish(internals.tables, cb); - }); - } - - reconnectCompose (dockerComposeHost) { - this._dockerCompose.close(); - this._dockerCompose = new DockerClient(dockerComposeHost); - - this._dockerCompose.on('error', (err) => { - this.emit('error', err); - }); - } - - reconnectDb (db) { - this._settings.db = db; - - try { - this._db.close(); - } catch (ex) {} - - this._db = new Penseur.Db(this._settings.name, this._settings.db); - - this.connect((err) => { - if (err) { - this.emit('error', err); - } - }); - } - - // portals - - createPortal (clientPortal, cb) { - const portal = Transform.toPortal(clientPortal); - this._db.portals.insert(portal, (err, key) => { - if (err) { - return cb(err); - } - - portal.id = key; - cb(null, Transform.fromPortal({ portal })); - }); - } - - getPortal (options, cb) { - this._db.portals.all((err, portals) => { - if (err) { - return cb(err); - } - - if (!portals) { - return cb(); - } - - const portal = portals.shift(); - - // Sub query/filter for deploymentGroups - const deploymentGroups = (args, cb) => { - if (typeof cb === 'function') { - return this.getDeploymentGroups(args, cb); - } - - return new Promise((resolve, reject) => { - this.getDeploymentGroups(args, internals.resolveCb(resolve, reject)); - }); - }; - - // Sub query/filter for user - const user = () => { - return new Promise((resolve, reject) => { - this.getUser({}, internals.resolveCb(resolve, reject)); - }); - }; - - // Sub query/filter for datacenter - const datacenter = () => { - return new Promise((resolve, reject) => { - this.getDatacenter({ id: portal.datacenter_id }, internals.resolveCb(resolve, reject)); - }); - }; - - cb(null, Transform.fromPortal({ - portal, - deploymentGroups, - datacenter, - user - })); - }); - } - - - // datacenters - - createDatacenter (datacenter, cb) { - this._db.datacenters.insert(datacenter, (err, key) => { - if (err) { - return cb(err); - } - - datacenter.id = key; - cb(null, datacenter); - }); - } - - getDatacenters (cb) { - this._db.datacenters.all(cb); - } - - getDatacenter ({ id, region }, cb) { - Hoek.assert(id || region, 'id or region are required to retrieve a datacenter'); - - if (region) { - return this._db.datacenters.query({ region }, (err, datacenters) => { - if (err) { - return cb(err); - } - - return cb(null, datacenters && datacenters.length ? datacenters[0] : null); - }); - } - - this._db.datacenters.get(id, cb); - } - - - // users - - createUser (clientUser, cb) { - const user = Transform.toUser(clientUser); - this._db.users.insert(user, (err, key) => { - if (err) { - return cb(err); - } - - user.id = key; - cb(null, Transform.fromUser(user)); - }); - } - - getUser (options, cb) { - this._db.users.all((err, users) => { - if (err) { - return cb(err); - } - - if (!users || !users.length) { - return cb(); - } - - cb(null, Transform.fromUser(users[0])); - }); - } - - - // deployment_groups - - createDeploymentGroup (clientDeploymentGroup, cb) { - const dg = Transform.toDeploymentGroup(clientDeploymentGroup); - this._server.log(['debug'], `-> creating DeploymentGroup: ${Util.inspect(dg)}`); - - this._db.deployment_groups.query({ - slug: dg.slug - }, (err, dgs) => { - if (err) { - return cb(err); - } - - if (dgs && dgs.length) { - return cb(new Error(`DeploymentGroup "${dg.slug}" already exists (${dgs[0].id})`)); - } - - this._db.deployment_groups.insert(dg, (err, key) => { - if (err) { - return cb(err); - } - - dg.id = key; - cb(null, Transform.fromDeploymentGroup(dg)); - }); - }); - } - - updateDeploymentGroup (clientDeploymentGroup, cb) { - const dg = Transform.toDeploymentGroup(clientDeploymentGroup); - this._server.log(['debug'], `-> updating DeploymentGroup: ${Util.inspect(dg)}`); - - this._db.deployment_groups.update([dg], (err) => { - if (err) { - return cb(err); - } - - this.getDeploymentGroup({ id: clientDeploymentGroup.id }, cb); - }); - } - - _getDeploymentGroupFns (deploymentGroup) { - const getServices = (args, cb) => { - args = args || {}; - args.ids = deploymentGroup.service_ids; - - if (typeof cb === 'function') { - return args.ids && args.ids.length ? - this.getServices(args, cb) : - cb(null, []); - } - - return new Promise((resolve, reject) => { - return args.ids && args.ids.length ? - this.getServices(args, internals.resolveCb(resolve, reject)) : - resolve([]); - }); - }; - - const getVersion = (args, cb) => { - args = args || {}; - args.id = deploymentGroup.version_id; - - if (typeof cb === 'function') { - return deploymentGroup.version_id ? - this.getVersion(args, cb) : - cb(null); - } - - return new Promise((resolve, reject) => { - return deploymentGroup.version_id ? - this.getVersion(args, internals.resolveCb(resolve, reject)) : - resolve(null); - }); - }; - - const getHistory = (args, cb) => { - args = args || {}; - args.version_ids = ForceArray(deploymentGroup.history_version_ids); - - if (typeof cb === 'function') { - return args.version_ids && args.version_ids.length ? - this.getHistory(args, cb) : - cb(null, []); - } - - return new Promise((resolve, reject) => { - return args.version_ids && args.version_ids.length ? - this.getHistory(args, internals.resolveCb(resolve, reject)) : - resolve([]); - }); - }; - - return Object.assign(deploymentGroup, { - services: getServices, - version: getVersion, - history: getHistory - }); - } - - getDeploymentGroups ({ ids, name, slug }, cb) { - const finish = (err, deploymentGroups) => { - if (err) { - return cb(err); - } - - if ((ids || name || slug) && (!deploymentGroups || !deploymentGroups.length)) { - return cb(Boom.notFound()); - } - - if (!deploymentGroups || !deploymentGroups.length) { - return cb(null, []); - } - - cb(null, deploymentGroups.map((dg) => { - return Transform.fromDeploymentGroup(this._getDeploymentGroupFns(dg)); - })); - }; - - if (ids) { - return this._db.deployment_groups.get(ids, finish); - } - - if (name) { - return this._db.deployment_groups.query({ name }, finish); - } - - if (slug) { - return this._db.deployment_groups.query({ slug }, finish); - } - - return this._db.deployment_groups.all(finish); - } - - getDeploymentGroup (query, cb) { - query = query || {}; - - if (query.id) { - return this._db.deployment_groups.get(query.id, (err, deploymentGroup) => { - if (err) { - return cb(err); - } - - cb(null, Transform.fromDeploymentGroup(this._getDeploymentGroupFns(deploymentGroup))); - }); - } - - this._db.deployment_groups.query(query, (err, deploymentGroups) => { - if (err) { - return cb(err); - } - - if (!deploymentGroups || !deploymentGroups.length) { - return cb(Boom.notFound()); - } - - cb(null, Transform.fromDeploymentGroup(this._getDeploymentGroupFns(deploymentGroups[0]))); - }); - } - - deleteDeploymentGroup ({ id }, cb) { - // dg, services, instances, versions, manifests - - const remove = (err, result) => { - if (err) { - return cb(err); - } - - const res = ForceArray(result.successes).reduce((acc, res) => { - return Object.assign(acc, res); - }, {}); - - VAsync.parallel({ - funcs: [ - (next) => { - if (!res.dg) { - return next(); - } - - this._db.deployment_groups.remove({ id }, next); - }, - (next) => { - if (!res.services) { - return next(); - } - - VAsync.forEachParallel({ - inputs: res.services, - func: ({ id }, next) => { - this._db.services.remove({ id }, next); - } - }, next); - }, - (next) => { - if (!res.instances) { - return next(); - } - - VAsync.forEachParallel({ - inputs: res.instances, - func: ({ id }, next) => { - this._db.instances.remove({ id }, next); - } - }, next); - }, - (next) => { - VAsync.forEachParallel({ - inputs: res.versions, - func: ({ id }, next) => { - this._db.versions.remove({ id }, next); - } - }, next); - }, - (next) => { - VAsync.forEachParallel({ - inputs: res.manifests, - func: ({ id }, next) => { - this._db.manifests.remove({ id }, next); - } - }, next); - } - ] - }, cb); - }; - - VAsync.parallel({ - funcs: [ - (next) => { - this.getDeploymentGroup({ id }, (err, dg) => { - if (internals.isNotFound(err)) { - return next(null, {}); - } - - next(err, { dg }); - }); - }, - (next) => { - this.getServices({ deploymentGroupId: id }, (err, services) => { - if (internals.isNotFound(err)) { - return next(null, {}); - } - - next(err, { services }); - }); - }, - (next) => { - this.getInstances({ deploymentGroupId: id }, (err, instances) => { - if (internals.isNotFound(err)) { - return next(null, {}); - } - - next(err, { instances }); - }); - }, - (next) => { - this.getVersions({ deploymentGroupId: id }, (err, versions) => { - next(err, { versions }); - }); - }, - (next) => { - this.getManifests({ deploymentGroupId: id }, (err, manifests) => { - next(err, { manifests }); - }); - } - ] - }, remove); - } - - // versions - - _versionFns (version) { - return Object.assign(version, { - manifest: (args) => { - return new Promise((resolve, reject) => { - return this.getManifest({ - id: version.manifest_id - }, internals.resolveCb(resolve, reject)); - }); - } - }); - } - - createVersion (clientVersion, cb) { - Hoek.assert(clientVersion, 'version is required'); - Hoek.assert(clientVersion.manifest, 'manifest is required'); - Hoek.assert(clientVersion.deploymentGroupId, 'deploymentGroupId is required'); - - this._server.log(['debug'], `-> creating new Version for DeploymentGroup ${clientVersion.deploymentGroupId}: ${Util.inspect(clientVersion)}`); - - const version = Transform.toVersion(clientVersion); - this._db.versions.insert(version, (err, key) => { - if (err) { - return cb(err); - } - - this._server.log(['debug'], `-> new Version for DeploymentGroup ${clientVersion.deploymentGroupId} created: ${key}`); - this._db.deployment_groups.query({ - id: clientVersion.deploymentGroupId - }, (err, deploymentGroup) => { - if (err) { - return cb(err); - } - - const changes = { - id: clientVersion.deploymentGroupId, - version_id: key, - history_version_ids: deploymentGroup.version_id ? - ForceArray(deploymentGroup.history_version_ids).concat([]) : - [] - }; - - this._server.log(['debug'], `-> updating DeploymentGroup ${clientVersion.deploymentGroupId} to add Version ${key}`); - - this._db.deployment_groups.update([changes], (err) => { - if (err) { - return cb(err); - } - - this.getVersion({ id: key }, cb); - }); - }); - }); - } - - updateVersion (clientVersion, cb) { - this._db.versions.update([Transform.toVersion(clientVersion)], (err) => { - if (err) { - return cb(err); - } - - this.getVersion({ id: clientVersion.id }, cb); - }); - } - - getVersion ({ id, manifestId }, cb) { - const query = id ? { id } : { manifest_id: manifestId }; - this._db.versions.single(query, (err, version) => { - if (err) { - return cb(err); - } - - if (!version) { - return cb(null, null); - } - - cb(null, Transform.fromVersion(this._versionFns(version))); - }); - } - - getVersions ({ manifestId, deploymentGroupId }, cb) { - const finish = (err, versions) => { - if (err) { - return cb(err); - } - - versions = versions || []; - cb(null, versions.map((version) => { - return Transform.fromVersion(this._versionFns(version)); - })); - }; - - // ensure the data is in sync - this._db.versions.sync(() => { - if (manifestId) { - return this._db.versions.query({ manifest_id: manifestId }, finish); - } - - this.getDeploymentGroup({ id: deploymentGroupId }, (err, deploymentGroup) => { - if (err) { - return finish(err); - } - - this._db.versions.get(deploymentGroup.history, finish); - }); - }); - } - - getHistory ({ version_ids }, cb) { - this._db.services.get(version_ids, (err, versions) => { - if (err) { - return cb(err); - } - - if (!versions || !versions.length) { - return cb(null, []); - } - - cb(null, versions.map((version) => { - return Transform.fromVersion(this._versionFns(version)); - })); - }); - } - - _getCurrentScale (deploymentGroupId, cb) { - const handleServiceInstanceMap = (err, result) => { - if (err) { - return cb(err); - } - - cb(err, ForceArray(result.successes).map(({ name, instances }) => { - const scale = { - serviceName: name, - replicas: ForceArray(instances).length - }; - - return Object.assign(scale, { - id: Hasha(JSON.stringify(scale)) - }); - })); - }; - - const handleServices = ({ dg }) => { - return (err, services) => { - if (err) { - return cb(err); - } - - VAsync.forEachParallel({ - inputs: services, - func: (service, next) => { - service.instances({}, (err, instances) => { - if (err) { - return next(err); - } - - next(err, Object.assign({}, service, { - instances - })); - }); - } - }, handleServiceInstanceMap); - }; - }; - - const handleDeploymentGroup = (err, dg) => { - if (err) { - return cb(err); - } - - dg.services({}, handleServices({ dg })); - }; - - this.getDeploymentGroup({ id: deploymentGroupId }, handleDeploymentGroup); - } - - scale ({ serviceId, replicas }, cb) { - Hoek.assert(serviceId, 'service id is required'); - Hoek.assert(typeof replicas === 'number' && replicas >= 0, 'replicas must be a number no less than 0'); - - // get the service - // check service status - // update service status - // get the deployment group - // use the deployment group to find the current version and manifest - // get instances - // get current scale - // identify plan and future scale - // update version - // callback - // scale the service - - // this._scale({ service, deployment_group, version, manifest, replicas }, cb); - - const ctx = { - isHandled: false - }; - - this._server.log(['debug'], '-> scale request received'); - - const handleFailedScale = (err1, cb) => { - if (err1) { - console.error(err1); - } - - this.updateService({ - id: serviceId, - status: 'ACTIVE' - }, (err2) => { - if (err2) { - console.error(err2); - } - - if (typeof cb === 'function') { - cb(err1 || err2); - } - }); - }; - - const handleTriggeredScale = (err) => { - if (err) { - return handleFailedScale(err); - } - - if (ctx.isHandled) { - return; - } - - ctx.isHandled = true; - - this._server.log(['debug'], `-> got response from docker-compose to scale ${ctx.service.name} to ${replicas} replicas`); - }; - - const triggerScale = (err, newVersion) => { - if (err) { - return handleFailedScale(err, cb); - } - - this._server.log(['debug'], '-> new Version created'); - - cb(null, newVersion); - - setImmediate(() => { - this._server.log(['debug'], `-> requesting docker-compose to scale ${ctx.service.name} to ${replicas} replicas`); - - this._dockerCompose.scale({ - projectName: ctx.deploymentGroup.name, - environment: ctx.manifest.environment, - files: internals.fromKeyValueToDict(ctx.manifest.files), - manifest: ctx.manifest.raw, - services: { - [ctx.service.name]: replicas - } - }, handleTriggeredScale); - }); - }; - - const getNewScale = () => { - return ctx.currentScale.map(({ serviceName, replicas }) => { - const scale = { - serviceName: serviceName, - replicas: serviceName === ctx.service.name ? - (ctx.serviceScale + ctx.diff) : - replicas - }; - - return Object.assign(scale, { - id: Hasha(JSON.stringify(scale)) - }); - }); - }; - - const handleScaleDown = () => { - const plan = { - type: 'REMOVE', - service: ctx.service.name, - toProcess: Math.abs(ctx.diff), - machines: ctx.instances.map(({ machineId }) => { - return machineId; - }) - }; - - const payload = { - manifest: ctx.manifest, - deploymentGroupId: ctx.deploymentGroup.id, - scale: getNewScale(), - hasPlan: true, - plan: [Object.assign(plan, { - id: Hasha(JSON.stringify(plan)) - })] - }; - - this._server.log(['debug'], `-> creating new Version for DOWN scale ${Util.inspect(payload)}`); - - // note: createVersion updates deploymentGroup - this.createVersion(payload, triggerScale); - }; - - const handleScaleUp = () => { - const plan = { - type: 'CREATE', - service: ctx.service.name, - toProcess: Math.abs(ctx.diff), - machines: ctx.instances.map(({ machineId }) => { - return machineId; - }) - }; - - const payload = { - manifest: ctx.manifest, - deploymentGroupId: ctx.deploymentGroup.id, - scale: getNewScale(), - hasPlan: true, - plan: [Object.assign(plan, { - id: Hasha(JSON.stringify(plan)) - })] - }; - - this._server.log(['debug'], `-> creating new Version for UP scale ${Util.inspect(payload)}`); - - // note: createVersion updates deploymentGroup - this.createVersion(payload, triggerScale); - }; - - const handleCurrentScale = (err, currentScale) => { - if (err) { - return handleFailedScale(err, cb); - } - - this._server.log(['debug'], `-> got current scale ${Util.inspect(currentScale)}`); - - const serviceReplicas = Find(currentScale, ['serviceName', ctx.service.name]).replicas; - const serviceScale = Number.isFinite(serviceReplicas) ? serviceReplicas : 1; - - const diff = replicas - serviceScale; - - if (diff === 0) { - return handleFailedScale(null, cb); - } - - ctx.serviceScale = serviceScale; - ctx.serviceReplicas = serviceReplicas; - ctx.currentScale = currentScale; - ctx.diff = diff; - - return (diff > 0) ? - handleScaleUp() : - handleScaleDown(); - }; - - const handleManifest = (err, manifest) => { - if (err) { - return handleFailedScale(err, cb); - } - - if (!manifest) { - return cb(new Error(`manifest not found for service with service id: ${serviceId}`)); - } - - ctx.manifest = manifest; - - this._server.log(['debug'], '-> fetching current scale'); - - this._getCurrentScale(ctx.deploymentGroup.id, handleCurrentScale); - }; - - const handleVersion = (err, version) => { - if (err) { - return handleFailedScale(err, cb); - } - - if (!version) { - return cb(new Error(`Version not found for service with service id: ${serviceId}`)); - } - - ctx.version = version; - - this._server.log(['debug'], `-> fetching Manifest ${version.manifest_id}`); - - this._db.manifests.single({ - id: version.manifest_id - }, handleManifest); - }; - - const handleDeploymentGroup = (err, deploymentGroup) => { - if (err) { - return handleFailedScale(err, cb); - } - - if (!deploymentGroup) { - return cb(new Error(`deployment group not found for service with service id: ${serviceId}`)); - } - - ctx.deploymentGroup = deploymentGroup; - - this._server.log(['debug'], `-> fetching Version ${ctx.deploymentGroup.version_id}`); - - this._db.versions.single({ - id: deploymentGroup.version_id - }, handleVersion); - }; - - const handleInstances = (err, instances = []) => { - if (err) { - return handleFailedScale(err, cb); - } - - this._server.log(['debug'], `-> got ${instances.length} Instances from ${ctx.service.name}`); - - ctx.instances = instances; - - this._server.log(['debug'], `-> fetching DeploymentGroup ${ctx.service.deployment_group_id}`); - - this._db.deployment_groups.single({ - id: ctx.service.deployment_group_id - }, handleDeploymentGroup); - }; - - const handleUpdatedService = (err) => { - if (err) { - return handleFailedScale(err, cb); - } - - this._server.log(['debug'], `-> fetching Instances from ${ctx.service.name}`); - - this.getInstances({ ids: ctx.service.instance_ids }, handleInstances); - }; - - const handleService = (err, service) => { - if (err) { - return cb(err); - } - - if (!service) { - return cb(new Error(`Service not found for id: ${serviceId}`)); - } - - if (service.status !== 'ACTIVE') { - return cb(new Error(`Can't scale when the status is "${service.status}"`)); - } - - ctx.service = service; - - this._server.log(['debug'], `-> fetching DeploymentGroup ${service.deployment_group_id}`); - - this.updateService({ - id: serviceId, - status: 'SCALING' - }, handleUpdatedService); - }; - - this._server.log(['debug'], `-> fetching Service ${serviceId}`); - - this._db.services.single({ id: serviceId }, handleService); - } - - - // manifests - - provisionManifest (clientManifest, cb) { - // 1. check that the deploymentgroup exists - // 2. update Deployment Group to set PROVISIONING status - // 3. get docker-compose config for the given manifest - // 4. create a new manifest - // 5. fetch current version - // 6. get curent scale based on machines in triton - // 7. create new version - // 8. call `up` and get the response - // 9. iterate over services from provision response - // 10. on each service, either create or update it with new status and hash - // 11. fetch all the existing services - // 12. for each existing service, check if it still exists on this provision. if it doesn't update to mark DELETING - // 13. update deployment group with calculated plan and ACTIVE status - - const ctx = { - isHandled: false - }; - - this._server.log(['debug'], '-> provision request received'); - - const handleFailedProvision = (err) => { - if (!err) { - return; - } - - console.error(err); - - this.updateVersion({ - id: ctx.newVersion.id, - error: `${err.message}\n${err.stack}` - }, (err) => { - if (err) { - console.error(err); - } - }); - }; - - const ServiceStatusFromPlan = { - NOOP: 'ACTIVE', - CREATE: 'PROVISIONING', - RECREATE: 'PROVISIONING', - START: 'PROVISIONING' - }; - - // 15. handle fetched instantes - // 16. update deployment group with calculated plan and ACTIVE status - const handleServiceInstanceMap = (err, result) => { - if (err) { - return handleFailedProvision(err); - } - - const services = ForceArray(result.successes); - - this._server.log(['debug'], `-> got a map of Service's-Instance's from DeploymentGroup ${ctx.currentDeploymentGroup.id} ${Util.inspect(services)}`); - - const plan = Flatten(services.map(({ name, instances }) => { - const provision = ctx.provisionRes[name]; - const machines = instances.map(({ machineId }) => { - return machineId; - }); - - const { replicas } = Find(ctx.currentScale, ['serviceName', name]); - const scale = Number.isFinite(replicas) ? replicas : 1; - const action = Get(provision, 'plan.action', 'NOOP').toUpperCase(); - - if (!provision) { - const plan = { - type: 'REMOVE', - service: name, - toProcess: machines.length, - machines: machines - }; - - return Object.assign(plan, { id: Hasha(JSON.stringify(plan)) }); - } - - const ActionMap = { - 'NOOP': () => { - const plan = { - type: 'NOOP', - service: name, - machines - }; - - return Object.assign(plan, { id: Hasha(JSON.stringify(plan)) }); - }, - 'CREATE': () => { - const plan = { - type: 'CREATE', - service: name, - toProcess: scale, - machines: machines - }; - - return Object.assign(plan, { id: Hasha(JSON.stringify(plan)) }); - }, - 'RECREATE': () => { - const plan = { - type: 'CREATE', - service: name, - toProcess: machines.length, - machines: machines - }; - - return Object.assign(plan, { id: Hasha(JSON.stringify(plan)) }); - }, - 'START': () => { - const plan = { - type: 'START', - service: name, - machines - }; - - return Object.assign(plan, { id: Hasha(JSON.stringify(plan)) }); - } - }; - - return ActionMap[action](); - })); - - VAsync.parallel({ - funcs: [ - (cb) => { - this._server.log(['debug'], `-> updating Version ${ctx.newVersion.id} from DeploymentGroup ${ctx.currentDeploymentGroup.id} with new Plan ${Util.inspect(plan)}`); - return this.updateVersion({ - id: ctx.newVersion.id, - hasPlan: true, - plan - }, cb); - }, - (cb) => { - this._server.log(['debug'], `-> updating DeploymentGroup ${ctx.currentDeploymentGroup.id} with new Service's ${Util.inspect(ctx.newServices)} and ACTIVE status`); - - const services = UniqBy( - ForceArray(ctx.newServices) - .concat(ForceArray(ctx.previousServices)), - 'id' - ); - - this.updateDeploymentGroup({ - id: ctx.currentDeploymentGroup.id, - status: 'ACTIVE', - services: services - }, cb); - } - ] - }, handleFailedProvision); - }; - - // 14. fetch instanceIds for each Service - const handleRemovedServices = (err) => { - if (err) { - return handleFailedProvision(err); - } - - this._server.log(['debug'], `-> marked removed Service's with DELETING from DeploymentGroup ${ctx.currentDeploymentGroup.id}`); - this._server.log(['debug'], `-> fetching a map of Service's-Instance's from DeploymentGroup ${ctx.currentDeploymentGroup.id}`); - - VAsync.forEachParallel({ - inputs: ctx.previousServices, - func: (service, next) => { - service.instances({}, (err, instances) => { - if (err) { - return next(err); - } - - next(err, Object.assign({}, service, { - instances - })); - }); - } - }, handleServiceInstanceMap); - }; - - // 13. handle all the existing services response - const handlePreviousServices = (err, previousServices = []) => { - if (err) { - return handleFailedProvision(err); - } - - this._server.log(['debug'], `-> identified previous Service's from DeploymentGroup ${ctx.currentDeploymentGroup.id} ${Util.inspect(ctx.previousServices)}`); - - ctx.previousServices = previousServices; - - // 12. for existing service, check if it still exists on this provision. if it doesn't update to mark DELETING - ctx.removedServices = previousServices.filter(({ name }) => { - return !Find(ctx.newServices, ['name', name]); - }); - - this._server.log(['debug'], `-> identified removed Service's from DeploymentGroup ${ctx.currentDeploymentGroup.id} ${Util.inspect(ctx.removedServices)}`); - - VAsync.forEachParallel({ - inputs: ctx.removedServices, - func: ({ id, name }, next) => { - this._server.log(['debug'], `-> marking Service ${name} as DELETING from DeploymentGroup ${ctx.currentDeploymentGroup.id}`); - this.updateService({ - id, - status: 'DELETING' - }, next); - } - }, handleRemovedServices); - }; - - // 11. fetch all the existing services - const handleNewServices = (err, result) => { - if (err) { - return handleFailedProvision(err); - } - - ctx.newServices = ForceArray(result.successes); - - this._server.log(['debug'], `-> got "${ctx.newServices.length}" Services provisioned from DeploymentGroup ${ctx.currentDeploymentGroup.id}`); - - ctx.currentDeploymentGroup.services({}, handlePreviousServices); - }; - - const createProvisionService = ({ payload }, cb) => { - this._server.log(['debug'], `-> creating Service "${payload.name}" from DeploymentGroup ${ctx.currentDeploymentGroup.id}`); - this.createService(payload, cb); - }; - - const updateProvisionService = ({ payload, serviceId }, cb) => { - this._server.log(['debug'], `-> updating Service "${payload.name}" from DeploymentGroup ${ctx.currentDeploymentGroup.id}`); - this.updateService(Object.assign({}, payload, { - id: serviceId - }), cb); - }; - - // 10. on each service, either create or update it with new status and hash - const handleProvisionService = (serviceName, next) => { - this._server.log(['debug'], `-> handling Service "${serviceName}" from DeploymentGroup ${ctx.currentDeploymentGroup.id}`); - - this.getServices({ - name: serviceName, - deploymentGroupId: ctx.currentDeploymentGroup.id - }, (err, services = []) => { - if (err && !internals.isNotFound(err)) { - return next(err); - } - - this._server.log(['debug'], `-> got ${services.length} services with name ${serviceName} from DeploymentGroup ${ctx.currentDeploymentGroup.id}`); - - const provision = ctx.provisionRes[serviceName]; - const action = Get(provision, 'plan.action', 'noop').toUpperCase(); - const service = services.shift(); - - const { config } = Find(ctx.config, ['name', serviceName], { - config: {} - }); - - const payload = { - hash: provision.hash, - deploymentGroupId: ctx.currentDeploymentGroup.id, - name: serviceName, - slug: ParamCase(serviceName), - status: ServiceStatusFromPlan[action], - config - }; - - return !service ? - createProvisionService({ payload }, next) : - updateProvisionService({ payload, serviceId: service.id }, next); - }); - }; - - // 8. handle `up` response - // 9. asynchronously iterate over services from provision response - const handleProvisionResponse = (err, provisionRes) => { - if (err) { - return handleFailedProvision(err); - } - - if (ctx.isHandled) { - return; - } - - this._server.log(['debug'], `-> got response from provision ${Util.inspect(provisionRes)}`); - - ctx.isHandled = true; - ctx.provisionRes = provisionRes; - - VAsync.forEachParallel({ - inputs: Object.keys(ctx.provisionRes), - func: handleProvisionService - }, handleNewServices); - }; - - const handleConfigServicesCreation = (err) => { - if (err) { - return handleFailedProvision(err); - } - - this._server.log(['debug'], `-> requesting docker-compose provision for DeploymentGroup ${ctx.currentDeploymentGroup.name}`); - - this._dockerCompose.provision({ - projectName: ctx.currentDeploymentGroup.name, - environment: clientManifest.environment, - files: internals.fromKeyValueToDict(clientManifest.files), - manifest: ctx.newManifest.raw - }, handleProvisionResponse); - }; - - const createConfigServices = () => { - VAsync.forEachParallel({ - inputs: ctx.config, - func: ({ name, slug }, next) => { - this.getServices({ - name, - deploymentGroupId: ctx.currentDeploymentGroup.id - }, (err, services = []) => { - if (!err) { - return next(); - } - - if (err && !internals.isNotFound(err)) { - return next(err); - } - - this.createService({ - deploymentGroupId: ctx.currentDeploymentGroup.id, - status: 'PROVISIONING', - name, - slug - }, next); - }); - } - }, (err, result) => { - if (err) { - return handleFailedProvision(err); - } - - this.updateDeploymentGroup({ - id: ctx.currentDeploymentGroup.id, - status: 'PROVISIONING', - services: result.successes - }, handleConfigServicesCreation); - }); - }; - - // 7. handle new version - // 8. call docker-compose to up dg - const handleNewVersion = (err, newVersion) => { - if (err) { - return cb(err); - } - - // note: deployment group is updated when version is created - - ctx.newVersion = newVersion; - - // cb with new version - // CALLBACK - cb(null, ctx.newVersion); - - setImmediate(createConfigServices); - }; - - // 6. handle curent scale based on machines in triton - // 7. create new version - const handleCurrentScale = (err, currentScale) => { - if (err) { - return cb(err); - } - - this._server.log(['debug'], `-> got current scale ${Util.inspect(currentScale)}`); - - ctx.currentScale = currentScale; - - this.createVersion({ - manifest: ctx.newManifest, - deploymentGroupId: ctx.currentDeploymentGroup.id, - scale: currentScale, - plan: [], - hasPlan: false - }, handleNewVersion); - }; - - // 5. handle current version - // 6. get curent scale based on machines in triton - const handleCurrentVersion = (err, currentVersion) => { - if (err) { - return cb(err); - } - - if (!currentVersion) { - this._server.log(['debug'], `-> detected first provision for DeploymentGroup ${ctx.currentDeploymentGroup.id}`); - } else { - this._server.log(['debug'], `-> creating new Version based on old Version ${currentVersion.id}`); - } - - ctx.currentVersion = currentVersion; - - this._getCurrentScale(ctx.currentDeploymentGroup.id, handleCurrentScale); - }; - - // 4. handle new version - // 5. fetch current version - const handleNewManifest = (err, newManifest) => { - if (err) { - return cb(err); - } - - this._server.log(['debug'], `-> fetching current version for ${ctx.currentDeploymentGroup.id}`); - - ctx.newManifest = newManifest; - ctx.currentDeploymentGroup.version(null, handleCurrentVersion); - }; - - // 3. handle docker-compose config for the given manifest - // 4. create a new manifest - const handleConfig = (err, config) => { - if (err) { - return cb(err); - } - - this._server.log(['debug'], `-> got docker-compose config ${Util.inspect(config)}`); - - ctx.config = config; - - this.createManifest(Object.assign(clientManifest, { - deploymentGroupId: ctx.currentDeploymentGroup.id - }), handleNewManifest); - }; - - // 1. check if deployment group exists - // 2. update Deployment Group to set PROVISIONING status - // 3. get docker-compose config for the given manifest - const handleDeploymentGroup = (err, currentDeploymentGroup) => { - if (err) { - return cb(err); - } - - if (!currentDeploymentGroup) { - return cb(new Error('Deployment group not found for manifest')); - } - - if (currentDeploymentGroup.status !== 'ACTIVE') { - console.error(`-> Can't provision when the status is "${currentDeploymentGroup.status}"`); - // return last version - return currentDeploymentGroup.version({}, cb); - } - - this._server.log(['debug'], `-> DeploymentGroup found with id ${currentDeploymentGroup.id}`); - - const configPayload = Object.assign({}, clientManifest, { - deploymentGroupName: currentDeploymentGroup.name - }); - - this._server.log(['debug'], `-> requesting docker-compose config for manifest ${Util.inspect(configPayload)}`); - - ctx.currentDeploymentGroup = currentDeploymentGroup; - - this.updateDeploymentGroup({ - id: ctx.currentDeploymentGroup.id, - status: 'PROVISIONING' - }, (err) => { - if (err) { - return cb(err); - } - - this.getConfig(configPayload, handleConfig); - }); - }; - - // 1. fetch current deployment group - this.getDeploymentGroup({ - id: clientManifest.deploymentGroupId - }, handleDeploymentGroup); - } - - createManifest (clientManifest, cb) { - this._server.log(['debug'], `-> creating new Manifest ${Util.inspect(clientManifest)}`); - - const newManifest = Transform.toManifest(clientManifest); - this._db.manifests.insert(newManifest, (err, manifestId) => { - if (err) { - return cb(err); - } - - this._server.log(['debug'], `-> new Manifest created with id ${manifestId}`); - - clientManifest.id = manifestId; - cb(null, Transform.fromManifest(clientManifest)); - }); - } - - getManifest ({ id }, cb) { - this._db.manifests.single({ id }, (err, manifest) => { - if (err) { - return cb(err); - } - - cb(null, Transform.fromManifest(manifest || {})); - }); - } - - getManifests ({ type, deploymentGroupId }, cb) { - const query = type ? { type } : { deployment_group_id: deploymentGroupId }; - this._db.manifests.query(query, (err, manifests) => { - if (err) { - return cb(err); - } - - manifests = manifests || []; - cb(null, manifests.map(Transform.fromManifest)); - }); - } - - createService (clientService, cb) { - const newService = Object.assign(Transform.toService(clientService), { - active: true - }); - - this._db.services.insert(newService, (err, key) => { - if (err) { - return cb(err); - } - - clientService.id = key; - cb(null, clientService); - }); - } - - updateService (clientService, cb) { - const payload = Transform.toService(clientService); - this._server.log(['debug'], `-> got update Service request ${Util.inspect(payload)}`); - - this._db.services.update([payload], (err) => { - if (err) { - return cb(err); - } - - this.getService({ id: clientService.id }, cb); - }); - } - - getService ({ id, hash }, cb) { - const query = id ? { id } : { version_hash: hash }; - this._server.log(['debug'], `-> fetching Service ${Util.inspect(query)}`); - this._db.services.query(query, (err, services) => { - if (err) { - return cb(err); - } - - if (!services || !services.length) { - this._server.log(['debug'], `-> Service ${Util.inspect(query)} not found`); - return cb(Boom.notFound()); - } - - const service = services.shift(); - - this._server.log(['debug'], `-> Service ${Util.inspect(query)} found ${Util.inspect(service)}`); - - const branches = ForceArray(service.branches).map((branch) => { - return Object.assign({}, branch, { - instances: this._instancesFilter(branch.instances) - }); - }).filter(({ name }) => { - return name; - }); - - return cb(null, Transform.fromService({ - service, - branches, - instances: this._instancesFilter(service.instance_ids) - })); - }); - } - - _getDeploymentGroupServices (deploymentGroupSlug, cb) { - this.getDeploymentGroup({ slug: deploymentGroupSlug }, (err, deploymentGroup) => { - if (err) { - return cb(err); - } - - if (!deploymentGroup) { - return cb(Boom.notFound()); - } - - return this.getServices({ deploymentGroupId: deploymentGroup.id }, cb); - }); - } - - getServices (options, cb) { - if (options.deploymentGroupSlug) { - return this._getDeploymentGroupServices(options.deploymentGroupSlug, cb); - } - - const query = {}; - if (options.ids && options.ids.length) { - query.id = this._db.or(options.ids); - } - - if (options.name) { - query.name = options.name; - } - - if (options.slug) { - query.slug = options.slug; - } - - if (options.parentId) { - query.parent_id = options.parentId; - } - - if (options.deploymentGroupId) { - query.deployment_group_id = options.deploymentGroupId; - } - - this._db.services.query(query, (err, services) => { - if (err) { - return cb(err); - } - - if (((options.ids && options.ids.length) || query.name || query.slug) && (!services || !services.length)) { - return cb(Boom.notFound()); - } - - if (!services || !services.length) { - return cb(); - } - - return cb(null, services.map((service) => { - const branches = ForceArray(service.branches).map((branch) => { - return Object.assign({}, branch, { - instances: this._instancesFilter(branch.instances) - }); - }).filter(({ name }) => { - return name; - }); - - return Transform.fromService({ - service, - branches, - instances: this._instancesFilter(service.instance_ids) - }); - })); - }); - } - - _instancesFilter (instanceIds = []) { - return (query, cb) => { - query = query || {}; - query.ids = instanceIds; - - if (typeof cb === 'function') { - return instanceIds && instanceIds.length ? - this.getInstances(query, cb) : - cb(null, []); - } - - return new Promise((resolve, reject) => { - return instanceIds && instanceIds.length ? - this.getInstances(query, internals.resolveCb(resolve, reject)) : - resolve([]); - }); - }; - } - - stopServices ({ ids }, cb) { - const revertStatus = (err1, cb) => { - if (err1) { - console.error(err1); - } - - VAsync.forEachParallel({ - inputs: ids, - func: (serviceId, next) => { - this.updateService({ - id: serviceId, - status: 'ACTIVE' - }, next); - } - }, (err2) => { - if (err2) { - console.error(err2); - } - - if (cb) { - cb(err1 || err2); - } - }); - }; - - const handleUpdatedServices = ({ - currentServices - }) => { - return (err, result) => { - if (err) { - return revertStatus(err, cb); - } - - cb(null, result.successes); - - setImmediate(() => { - const instanceIds = currentServices.reduce((instanceIds, service) => { - return instanceIds.concat(service.instance_ids); - }, []); - - VAsync.forEachParallel({ - inputs: instanceIds, - func: (instanceId, next) => { - this._db.instances.get(instanceId, (err, instance) => { - if (err) { - return next(err); - } - - if (!this._triton) { - return next(); - } - - this._triton.stopMachine(instance.machine_id, next); - }); - } - }, (err) => { - if (err) { - console.error(err); - } - }); - }); - }; - }; - - const handleCurrentServices = (err, currentServices) => { - if (err) { - return cb(err); - } - - if (!currentServices || !currentServices.length) { - return cb(); - } - - VAsync.forEachParallel({ - inputs: ids, - func: (serviceId, next) => { - this.updateService({ - id: serviceId, - status: 'STOPPING' - }, next); - } - }, handleUpdatedServices({ - currentServices - })); - }; - - this._db.services.get(ids, handleCurrentServices); - } - - startServices ({ ids }, cb) { - const revertStatus = (err1, cb) => { - if (err1) { - console.error(err1); - } - - VAsync.forEachParallel({ - inputs: ids, - func: (serviceId, next) => { - this.updateService({ - id: serviceId, - status: 'ACTIVE' - }, next); - } - }, (err2) => { - if (err2) { - console.error(err2); - } - - if (cb) { - cb(err1 || err2); - } - }); - }; - - const handleUpdatedServices = ({ - currentServices - }) => { - return (err, result) => { - if (err) { - return revertStatus(err, cb); - } - - cb(null, result.successes); - - setImmediate(() => { - const instanceIds = currentServices.reduce((instanceIds, service) => { - return instanceIds.concat(service.instance_ids); - }, []); - - VAsync.forEachParallel({ - inputs: instanceIds, - func: (instanceId, next) => { - this._db.instances.get(instanceId, (err, instance) => { - if (err) { - return next(err); - } - - if (!this._triton) { - return next(); - } - - this._triton.startMachine(instance.machine_id, next); - }); - } - }, (err) => { - if (err) { - console.error(err); - } - }); - }); - }; - }; - - const handleCurrentServices = (err, currentServices) => { - if (err) { - return cb(err); - } - - if (!currentServices || !currentServices.length) { - return cb(); - } - - VAsync.forEachParallel({ - inputs: ids, - func: (serviceId, next) => { - this.updateService({ - id: serviceId, - status: 'ACTIVE' - }, next); - } - }, handleUpdatedServices({ - currentServices - })); - }; - - this._db.services.get(ids, handleCurrentServices); - } - - restartServices ({ ids }, cb) { - // 1. update all services statuses to RESTARTING - // 2. get all instances - // 3. restart all instances - // 4. revert service status - - const revertStatus = (err1, cb) => { - if (err1) { - console.error(err1); - } - - VAsync.forEachParallel({ - inputs: ids, - func: (serviceId, next) => { - this.updateService({ - id: serviceId, - status: 'ACTIVE' - }, next); - } - }, (err2) => { - if (err2) { - console.error(err2); - } - - if (cb) { - cb(err1 || err2); - } - }); - }; - - const handleUpdatedServices = ({ - currentServices - }) => { - return (err, result) => { - if (err) { - return revertStatus(err, cb); - } - - cb(null, result.successes); - - setImmediate(() => { - const instanceIds = currentServices.reduce((instanceIds, service) => { - return instanceIds.concat(service.instance_ids); - }, []); - - VAsync.forEachParallel({ - inputs: instanceIds, - func: (instanceId, next) => { - this._db.instances.get(instanceId, (err, instance) => { - if (err) { - return next(err); - } - - if (!this._triton) { - return next(); - } - - this._triton.rebootMachine(instance.machine_id, next); - }); - } - }, revertStatus); - }); - }; - }; - - const handleCurrentServices = (err, currentServices) => { - if (err) { - return cb(err); - } - - if (!currentServices || !currentServices.length) { - return cb(); - } - - VAsync.forEachParallel({ - inputs: ids, - func: (serviceId, next) => { - this.updateService({ - id: serviceId, - status: 'RESTARTING' - }, next); - } - }, handleUpdatedServices({ - currentServices - })); - }; - - this._db.services.get(ids, handleCurrentServices); - } - - deleteServices ({ ids }, cb) { - const revertStatus = (err1, cb) => { - if (err1) { - console.error(err1); - } - - VAsync.forEachParallel({ - inputs: ids, - func: (serviceId, next) => { - this.updateService({ - id: serviceId, - status: 'ACTIVE' - }, next); - } - }, (err2) => { - if (err2) { - console.error(err2); - } - - if (cb) { - cb(err1 || err2); - } - }); - }; - - const handleUpdatedServices = ({ - currentServices - }) => { - return (err, result) => { - if (err) { - return revertStatus(err, cb); - } - - cb(null, result.successes); - - setImmediate(() => { - const instanceIds = currentServices.reduce((instanceIds, service) => { - return instanceIds.concat(service.instance_ids); - }, []); - - VAsync.forEachParallel({ - inputs: instanceIds, - func: (instanceId, next) => { - this._db.instances.get(instanceId, (err, instance) => { - if (err) { - return next(err); - } - - if (!this._triton) { - return next(); - } - - this._triton.deleteMachine(instance.machine_id, next); - }); - } - }, (err) => { - if (err) { - console.error(err); - } - }); - }); - }; - }; - - const handleCurrentServices = (err, currentServices) => { - if (err) { - return cb(err); - } - - if (!currentServices || !currentServices.length) { - return cb(); - } - - VAsync.forEachParallel({ - inputs: ids, - func: (serviceId, next) => { - this.updateService({ - id: serviceId, - status: 'DELETING' - }, next); - } - }, handleUpdatedServices({ - currentServices - })); - }; - - this._db.services.get(ids, handleCurrentServices); - } - - - // instances - - createInstance (clientInstance, cb) { - this._db.instances.insert(Transform.toInstance(clientInstance), (err, key) => { - if (err) { - return cb(err); - } - - clientInstance.id = key; - cb(null, clientInstance); - }); - } - - getMetricsForInstance (instance) { - return ({ names, start, end }) => { - if (instance.status.toUpperCase() !== 'RUNNING') { - return Promise.resolve([]); - } - - return new Promise((resolve, reject) => { - const options = { - deploymentGroupId: instance.deployment_group_id, - instances: [instance.id], - names, - start, - end - }; - - this.getMetrics(options, (err, metrics) => { - return err ? reject(err) : resolve(metrics); - }); - }); - }; - } - - getInstance ({ id }, cb) { - this._db.instances.single({ id }, (err, instance) => { - if (err) { - return cb(err); - } - - if (!instance) { - return cb(Boom.notFound()); - } - - cb(null, Transform.fromInstance({ instance, metrics: this.getMetricsForInstance(instance) })); - }); - } - - getInstances ({ ids, name, machineId, status }, cb) { - const query = {}; - - if (ids) { - query.id = this._db.or(ids); - } - - if (name) { - query.name = name; - } - - if (machineId) { - query.machine_id = machineId; - } - - if (status) { - query.status = status; - } - - this._db.instances.query(query, (err, instances) => { - if (err) { - return cb(err); - } - - if (((ids && ids.length) || name || machineId) && (!instances || !instances.length)) { - return cb(Boom.notFound()); - } - - if (!instances || !instances.length) { - return cb(null, []); - } - - cb(null, instances.map((instance) => { - return Transform.fromInstance({ instance, metrics: this.getMetricsForInstance(instance) }); - })); - }); - } - - updateInstance (clientInstance, cb) { - const instance = Transform.toInstance(clientInstance); - - this._db.instances.update([instance], (err) => { - if (err) { - return cb(err); - } - - this.getInstance({ id: instance.id }, cb); - }); - } - - stopInstances ({ ids }, cb) { - this._db.instances.get(ids, (err, instances) => { - if (err) { - return cb(err); - } - - if (!instances || !instances.length) { - return cb(); - } - - VAsync.forEachParallel({ - func: (instance, next) => { - if (!this._triton) { - return next(); - } - - this._triton.stopMachine(instance.machine_id, next); - }, - inputs: instances - }, (err) => { - if (err) { - return cb(err); - } - - this.getInstances({ ids }, cb); - }); - }); - } - - startInstances ({ ids }, cb) { - this._db.instances.get(ids, (err, instances) => { - if (err) { - return cb(err); - } - - if (!instances || !instances.length) { - return cb(); - } - - VAsync.forEachParallel({ - func: (instance, next) => { - if (!this._triton) { - return next(); - } - - this._triton.startMachine(instance.machine_id, (err) => { - if (err) { - return next(err); - } - - const container = this._docker.getContainer(instance.machine_id.split(/-/)[0]); - - // Update the IPAddress for the instance - container.inspect((err, details) => { - if (err) { - return next(err); - } - - this._db.instances.update(instance.id, { - ips: [details.NetworkSettings.IPAddress] - }, next); - }); - }); - }, - inputs: instances - }, (err) => { - if (err) { - return cb(err); - } - - this.getInstances({ ids }, cb); - }); - }); - } - - restartInstances ({ ids }, cb) { - this._db.instances.get(ids, (err, instances) => { - if (err) { - return cb(err); - } - - if (!instances || !instances.length) { - return cb(); - } - - VAsync.forEachParallel({ - func: (instance, next) => { - if (!this._triton) { - return next(); - } - - this._triton.rebootMachine(instance.machine_id, next); - }, - inputs: instances - }, (err) => { - if (err) { - return cb(err); - } - - this.getInstances({ ids }, cb); - }); - }); - } - - - // packages - - createPackage (clientPackage, cb) { - this._db.packages.insert(Transform.toPackage(clientPackage), (err, key) => { - if (err) { - return cb(err); - } - - clientPackage.id = key; - cb(null, clientPackage); - }); - } - - getPackage ({ id }, cb) { - this._db.packages.single({ id }, (err, dbPackage) => { - if (err) { - return cb(err); - } - - if (!dbPackage) { - return cb(Boom.notFound()); - } - - cb(null, Transform.fromPackage(dbPackage)); - }); - } - - getPackages ({ name, type }, cb) { - const query = name ? { name } : { type }; - this._db.packages.query(query, (err, dbPackages) => { - if (err) { - return cb(err); - } - - cb(null, dbPackages ? dbPackages.map(Transform.fromPackage) : []); - }); - } - - getConfig ({deploymentGroupName = '', type = '', format = '', environment = '', files = [], raw = '' }, cb) { - if (type.toUpperCase() !== 'COMPOSE') { - return cb(new Error('"COMPOSE" is the only `type` supported')); - } - - if (format.toUpperCase() !== 'YAML') { - return cb(new Error('"YAML" is the only `format` supported')); - } - - let isFinished = false; - - this._dockerCompose.config({ - projectName: deploymentGroupName, - environment, - files: internals.fromKeyValueToDict(files), - manifest: raw - }, (err, config = {}) => { - if (err) { - return cb(err); - } - - if (isFinished) { - return; - } - - isFinished = true; - - const { services } = config; - - if (!services || !Object.keys(services).length) { - return cb(null, []); - } - - cb(null, Object.keys(services).reduce((acc, serviceName) => { - const environment = Get(services, `${serviceName}.environment`, {}); - const labels = Get(services, `${serviceName}.labels`, {}); - const ports = Get(services, `${serviceName}.ports`, []); - const image = Get(services, `${serviceName}.image`, ''); - - const toKeyValue = (v) => { - return Object.keys(v).map((key) => { - return { - id: Uuid(), - name: key, - value: v[key] - }; - }); - }; - - return acc.concat([{ - id: Uuid(), - hash: Uuid(), - name: serviceName, - slug: ParamCase(serviceName), - instances: [], - config: { - id: Uuid(), - environment: toKeyValue(environment), - image: image, - labels: toKeyValue(labels), - ports: ports - } - }]); - }, [])); - }); - } - - getImportableDeploymentGroups (args, cb) { - if (!this._machines) { - return cb(null, []); - } - - const machines = this._machines.getContainers(); - - if (!Array.isArray(machines)) { - return cb(null, []); - } - - this.getDeploymentGroups({}, (err, dgs) => { - if (err) { - return cb(err); - } - - const names = dgs.map(({ name }) => { - return name; - }); - - return cb( - null, - UniqBy( - machines - .filter(({ tags = {} }) => { - return names.indexOf(tags[DEPLOYMENT_GROUP]) < 0; - }) - .filter(({ state }) => { - return NON_IMPORTABLE_STATES.indexOf(state.toUpperCase()) < 0; - }) - .filter(({ tags = {} }) => { - return [DEPLOYMENT_GROUP, SERVICE, HASH].every((name) => { - return tags[name]; - }); - }) - .map(({ tags = {} }) => { - return ({ - id: Uuid(), - name: tags[DEPLOYMENT_GROUP], - slug: ParamCase(tags[DEPLOYMENT_GROUP]) - }); - }), - 'slug' - ) - ); - }); - } - - importDeploymentGroup ({ deploymentGroupSlug }, cb) { - this._server.log(['debug'], `-> import requested for ${deploymentGroupSlug}`); - - if (!this._machines) { - this._server.log(['debug'], '-> watcher not yet defined'); - return cb(null, null); - } - - const machines = this._machines.getContainers(); - - if (!Array.isArray(machines)) { - this._server.log(['debug'], '-> no machines found'); - return cb(null, null); - } - - const containers = machines - .filter( - ({ tags = {} }) => { - return tags[DEPLOYMENT_GROUP] && ParamCase(tags[DEPLOYMENT_GROUP]) === deploymentGroupSlug; - } - ) - .filter( - ({ state }) => { - return NON_IMPORTABLE_STATES.indexOf(state.toUpperCase()) < 0; - } - ); - - if (!containers.length) { - this._server.log(['debug'], `-> no containers found for ${deploymentGroupSlug}`); - return cb(null, null); - } - - const { tags = [] } = containers[0]; - - const services = containers.reduce((acc, machine) => { - const { - tags = [], - id = '', - state = '', - name = '', - primaryIp = '' - } = machine; - - const hash = tags[HASH]; - const slug = ParamCase(tags[SERVICE]); - const attr = `${hash}-${slug}`; - - const instance = { - name: name, - machineId: id, - status: state.toUpperCase(), - primaryIp: primaryIp - }; - - if (acc[attr]) { - acc[attr].instances.push(instance); - return acc; - } - - return Object.assign(acc, { - [attr]: { - hash, - name: tags[SERVICE], - status: 'ACTIVE', - slug, - instances: [instance] - } - }); - }, {}); - - const handleNewInstances = ({ id }, next) => { - return (err, result) => { - if (err) { - return next(err); - } - - this._server.log(['debug'], `-> created Instances ${Util.inspect(result.successes)}`); - - this.updateService({ - id, - instances: result.successes - }, next); - }; - }; - - const handleNewService = ({ instances, deploymentGroupId }, next) => { - return (err, service) => { - if (err) { - return next(err); - } - - VAsync.forEachParallel({ - inputs: instances, - func: (instance, next) => { - return this.createInstance(Object.assign(instance, { - deploymentGroupId, - serviceId: service.id - }), next); - } - }, handleNewInstances(service, next)); - }; - }; - - const createService = (deploymentGroupId) => { - return (serviceIndex, next) => { - const service = services[serviceIndex]; - - this._server.log(['debug'], `-> creating Service ${Util.inspect(service)}`); - - this.createService(Object.assign(service, { - deploymentGroupId - }), handleNewService({ - instances: service.instances, - deploymentGroupId - }, next)); - }; - }; - - const handleNewServices = (deploymentGroupId) => { - return (err, result) => { - if (err) { - return cb(err); - } - - this.updateDeploymentGroup({ - id: deploymentGroupId, - services: result.successes - }, cb); - }; - }; - - const handleNewDeploymentGroup = (err, dg) => { - if (err) { - return cb(err); - } - - VAsync.forEachParallel({ - inputs: Object.keys(services), - func: createService(dg.id) - }, handleNewServices(dg.id)); - }; - - const deploymentGroup = { - name: tags[DEPLOYMENT_GROUP], - slug: ParamCase(tags[DEPLOYMENT_GROUP]), - status: 'ACTIVE', - imported: true - }; - - this._server.log(['debug'], `-> creating DeploymentGroup ${Util.inspect(deploymentGroup)}`); - - this.createDeploymentGroup(deploymentGroup, handleNewDeploymentGroup); - } - - static formatMetrics (metrics) { - return metrics.map((metric) => { - const i = internals.metricNames.indexOf(metric.name); - - if (i !== -1) { - metric.name = internals.metricNameEnum[i]; - } - - metric.metrics = metric.metrics.map((entry) => { - return Object.assign(entry, { - time: entry.time.toISOString() - }); - }); - - return Object.assign(metric, { - start: metric.metrics[0].time, - end: metric.metrics[metric.metrics.length - 1].time - }); - }); - } - - - getMetrics ({ deploymentGroupId, names, instances, start, end }, cb) { - Hoek.assert(deploymentGroupId !== undefined, 'deploymentGroupId is required'); - Hoek.assert(names && names.length, 'names are required'); - Hoek.assert(instances && instances.length, 'instances are required'); - - const ctx = {}; - - const handleMetrics = (err, metrics) => { - if (err) { - return cb(null, []); - } - - cb(null, Data.formatMetrics(metrics)); - }; - - const fetchMetrics = (ip, cb) => { - const formattedNames = names.map((name) => { - const i = internals.metricNameEnum.indexOf(name); - return (i === -1) ? name : internals.metricNames[i]; - }); - - const prometheus = new Prometheus({ url: `http://${ip}:9090` }); - - prometheus.getMetrics({ - names: formattedNames, - instances: ctx.instances.map(({ name }) => { - return name; - }), - start, - end - }, cb); - }; - - const handlePrometheusInstances = (instances) => { - if (!instances.length) { - return cb(null, []); - } - - const { primaryIp } = instances.shift(); - fetchMetrics(primaryIp, handleMetrics); - }; - - const handlePrometheusServices = (err, services) => { - if (err && internals.isNotFound(err)) { - return cb(null, []); - } - - if (err) { - return cb(err); - } - - if (!services.length) { - return cb(null, []); - } - - services.shift() - .instances() - .then(handlePrometheusInstances) - .catch(cb); - }; - - this.getInstances({ - ids: instances - }, (err, instances) => { - if (err) { - return cb(err); - } - - ctx.instances = instances; - - this.getServices({ - deploymentGroupId, - name: 'prometheus' - }, handlePrometheusServices); - }); - } -} - -module.exports = Data; -module.exports.UNKNOWN_INSTANCE_ID = UNKNOWN_INSTANCE_ID; -module.exports.NEW_INSTANCE_ID = NEW_INSTANCE_ID; diff --git a/packages/portal-api/lib/data/transform.js b/packages/portal-api/lib/data/transform.js deleted file mode 100644 index 5aecbec3..00000000 --- a/packages/portal-api/lib/data/transform.js +++ /dev/null @@ -1,221 +0,0 @@ -'use strict'; - -const ParamCase = require('param-case'); -const Hasha = require('hasha'); - -const clean = (v) => { - return JSON.parse(JSON.stringify(v)); -}; - -exports.fromPortal = function ({ portal, datacenter, deploymentGroups, user }) { - return { - id: portal.id, - user, - datacenter, - deploymentGroups - }; -}; - -exports.toPortal = function (clientPortal) { - return { - user_id: clientPortal.user ? clientPortal.user.id : '', - datacenter_id: clientPortal.datacenter ? clientPortal.datacenter.id : '', - deployment_group_ids: clientPortal.deploymentGroups ? clientPortal.deploymentGroups.map((deploymentGroup) => { - return deploymentGroup.id; - }) : [] - }; -}; - - -exports.fromDeploymentGroup = function (deploymentGroup) { - return { - id: deploymentGroup.id, - name: deploymentGroup.name, - slug: deploymentGroup.slug, - services: deploymentGroup.services, - version: deploymentGroup.version, - history: deploymentGroup.history, - imported: deploymentGroup.imported, - status: deploymentGroup.status - }; -}; - -exports.toDeploymentGroup = function (clientDeploymentGroup) { - return clean({ - id: clientDeploymentGroup.id, - name: clientDeploymentGroup.name, - slug: clientDeploymentGroup.slug ? - clientDeploymentGroup.slug : - clientDeploymentGroup.name ? - ParamCase(clientDeploymentGroup.name) : - undefined, - service_ids: Array.isArray(clientDeploymentGroup.services) ? clientDeploymentGroup.services.map(({ id }) => { - return id; - }).filter(Boolean) : undefined, - version_id: clientDeploymentGroup.version ? clientDeploymentGroup.version.id : undefined, - history_version_ids: Array.isArray(clientDeploymentGroup.history) ? clientDeploymentGroup.history.map(({ id }) => { - return id; - }).filter(Boolean) : undefined, - imported: clientDeploymentGroup.imported, - status: clientDeploymentGroup.status || 'ACTIVE' - }); -}; - - -exports.fromService = function ({ service, instances, branches, packages }) { - return { - id: service.id, - hash: service.version_hash, - deploymentGroupId: service.deployment_group_id, - name: service.name, - slug: service.slug, - instances, - connections: service.service_dependency_ids, - branches: branches, - config: service.config ? service.config : undefined, - status: service.status, - hasPlan: service.has_plan - }; -}; - -exports.toService = function (clientService) { - return clean({ - id: clientService.id, - version_hash: clientService.hash, - deployment_group_id: clientService.deploymentGroupId, - name: clientService.name, - slug: clientService.slug, - instance_ids: clientService.instances ? - clientService.instances.map((instance) => { - return instance.id; - }) : - undefined, - service_dependency_ids: clientService.connections, - branches: clientService.branches, - config: clientService.config ? clientService.config : undefined, - status: clientService.status, - has_plan: clientService.hasPlan - }); -}; - - -exports.toVersion = function (clientVersion) { - return clean({ - id: clientVersion.id, - created: clientVersion.created || Date.now(), - manifest_id: (clientVersion.manifest || {}).id, - deployment_group_id: clientVersion.deploymentGroupId, - service_scales: clientVersion.scale ? clientVersion.scale : undefined, - plan: clientVersion.plan ? clientVersion.plan : undefined, - error: clientVersion.version - }); -}; - -exports.fromVersion = function (version) { - return { - id: version.id, - created: version.created, - deploymentGroupId: version.deployment_group_id, - manifest: version.manifest, - scale: version.service_scales, - plan: version.plan, - error: version.error - }; -}; - - -exports.toManifest = function (clientManifest) { - return clean({ - id: clientManifest.id, - deployment_group_id: clientManifest.deploymentGroupId, - created: clientManifest.created || Date.now(), - type: clientManifest.type, - format: clientManifest.format, - environment: clientManifest.environment, - files: clientManifest.files ? clientManifest.files.map((m) => { - return Object.assign({}, m, { - id: m.id || Hasha(JSON.stringify(m)) - }); - }) : undefined, - raw: clientManifest.raw - }); -}; - -exports.fromManifest = function (manifest) { - return { - id: manifest.id, - deploymentGroupId: manifest.deployment_group_id, - created: manifest.created, - type: manifest.type, - format: manifest.format, - environment: manifest.environment, - files: manifest.files, - raw: manifest.raw, - json: manifest.json - }; -}; - - -exports.fromPackage = function (packages) { - return packages; -}; - -exports.toPackage = function (packages) { - return packages; -}; - - -exports.fromInstance = function ({ instance, metrics }) { - return { - id: instance.id, - name: instance.name, - machineId: instance.machine_id, - primaryIp: instance.primary_ip, - serviceId: instance.service_id, - deploymentGroupId: instance.deployment_group_id, - status: instance.status, - healthy: instance.healthy, - watches: instance.watches, - jobs: instance.jobs, - metrics - }; -}; - - -exports.toInstance = function (clientInstance) { - return clean({ - id: clientInstance.id, - name: clientInstance.name, - machine_id: clientInstance.machineId, - primary_ip: clientInstance.primaryIp, - deployment_group_id: clientInstance.deploymentGroupId, - service_id: clientInstance.serviceId, - status: clientInstance.status, - healthy: clientInstance.healthy, - watches: clientInstance.watches, - jobs: clientInstance.jobs - }); -}; - - -exports.fromUser = function (user) { - return { - id: user.id, - tritonId: user.tritonId, - firstName: user.first_name, - lastName: user.last_name, - email: user.email, - login: user.login - }; -}; - -exports.toUser = function (clientUser) { - return { - id: clientUser.id, - tritonId: clientUser.tritonId, - first_name: clientUser.firstName, - last_name: clientUser.lastName, - email: clientUser.email, - login: clientUser.login - }; -}; diff --git a/packages/portal-api/lib/index.js b/packages/portal-api/lib/index.js deleted file mode 100644 index e6f49e05..00000000 --- a/packages/portal-api/lib/index.js +++ /dev/null @@ -1,117 +0,0 @@ -'use strict'; - -const Schema = require('joyent-cp-gql-schema'); -const Graphi = require('graphi'); -const Hoek = require('hoek'); -const Piloted = require('piloted'); -const Data = require('./data'); -const Pack = require('../package.json'); -const Resolvers = require('./resolvers'); -const ContainerPilotWatcher = require('./watch/container-pilot'); -const MachinesWatcher = require('./watch/machines'); - - -const internals = { - namespace: process.env.NAMESPACE ? `/${process.env.NAMESPACE}` : '', - defaults: { - data: { - db: { - host: 'localhost' - }, - dockerComposeHost: 'tcp://0.0.0.0:4242' - }, - watch: { - url: process.env.SDC_URL, - account: process.env.SDC_ACCOUNT, - keyId: process.env.SDC_KEY_ID - } - } -}; - -module.exports = function (server, options, next) { - const settings = Hoek.applyToDefaults(internals.defaults, options || {}); - - try { - const docker = Piloted.service('docker-compose-api'); - if (docker) { - settings.data.dockerComposeHost = `tcp://${docker.address}:${docker.port}`; - } - - const rethinkdb = Piloted.service('rethinkdb'); - if (rethinkdb) { - settings.data.db.host = rethinkdb.address; - } - } catch (ex) { - server.log(['error'], ex); - } - - settings.watch.server = server; - settings.data.server = server; - - const data = new Data(settings.data); - const cpWatcher = new ContainerPilotWatcher(Object.assign(settings.watch, { data })); - const machinesWatcher = new MachinesWatcher(Object.assign(settings.watch, { data })); - - // watcher <-> watcher - // portal depends on watcher and vice-versa - // I'm sure there is a better way to organize this domains - // but this works for now - data.setMachinesWatcher(machinesWatcher); - - cpWatcher.on('error', (err) => { - server.log(['error'], err); - }); - - data.on('error', (err) => { - server.log(['error'], err); - }); - - data.connect((err) => { - if (err) { - return next(err); - } - - server.bind(data); - - Piloted.on('refresh', internals.refresh(data)); - - machinesWatcher.poll(); - cpWatcher.poll(); - - server.register([ - { - register: Graphi, - options: { - graphqlPath: `${internals.namespace}/graphql`, - graphiqlPath: `${internals.namespace}/graphiql`, - schema: Schema, - resolvers: Resolvers(data) - } - } - ]); - - next(); - }); -}; - -module.exports.attributes = { - name: Pack.name, - version: Pack.version, - once: true, - multiple: false -}; - - -internals.refresh = function (data) { - return () => { - const docker = Piloted.service('docker-compose-api'); - if (docker) { - data.reconnectCompose(`tcp://${docker.address}:${docker.port}`); - } - - const rethinkdb = Piloted.service('rethinkdb'); - if (rethinkdb) { - data.reconnectDb({ host: rethinkdb.address }); - } - }; -}; diff --git a/packages/portal-api/lib/resolvers.js b/packages/portal-api/lib/resolvers.js deleted file mode 100644 index 7b8db891..00000000 --- a/packages/portal-api/lib/resolvers.js +++ /dev/null @@ -1,62 +0,0 @@ -'use strict'; - -module.exports = (data) => { - const queryWrap = function (name) { - return function (options, request, cb) { - return data[name](options, cb); - }; - }; - - const mutationWrap = function (name) { - return function (options, request, cb) { - return data[name](options, cb); - }; - }; - - const queries = [ - 'portal', - 'deploymentGroups', - 'deploymentGroup', - 'services', - 'service', - 'instances', - 'instance', - 'metricTypes', - 'metricData', - 'package', - 'datacenters', - 'instanceMetric', - 'config', - 'importableDeploymentGroups', - 'metrics' - ]; - - const mutations = [ - 'createDeploymentGroup', - 'updateDeploymentGroup', - 'deleteDeploymentGroup', - 'provisionManifest', - 'scale', - 'stopServices', - 'startServices', - 'restartServices', - 'deleteServices', - 'stopInstances', - 'startInstances', - 'restartInstances', - 'importDeploymentGroup' - ]; - - const resolvers = {}; - - queries.forEach((query) => { - const functionName = 'get' + query[0].toUpperCase() + query.slice(1); - resolvers[query] = queryWrap(functionName); - }); - - mutations.forEach((mutation) => { - resolvers[mutation] = mutationWrap(mutation); - }); - - return resolvers; -}; diff --git a/packages/portal-api/lib/watch/container-pilot.js b/packages/portal-api/lib/watch/container-pilot.js deleted file mode 100644 index ea7b6c52..00000000 --- a/packages/portal-api/lib/watch/container-pilot.js +++ /dev/null @@ -1,537 +0,0 @@ -'use strict'; - -const Events = require('events'); -const Flatten = require('lodash.flatten'); -const Triton = require('triton'); -const VAsync = require('vasync'); -const Wreck = require('wreck'); -const CIDRMatcher = require('cidr-matcher'); -const ForceArray = require('force-array'); -const Get = require('lodash.get'); -const Uniq = require('lodash.uniq'); -const Hasha = require('hasha'); -const ParamCase = require('param-case'); -const Queue = require('./queue'); - -module.exports = class ContainerPilotWatcher extends Events { - constructor (options) { - super(); - - options = options || {}; - - // todo assert options - this._data = options.data; - this._frequency = options.frequency || 1000; - - const TritonClient = options.Triton || Triton; - - TritonClient.createClient({ - profile: { - url: options.url || process.env.SDC_URL, - account: options.account || process.env.SDC_ACCOUNT, - keyId: options.keyId || process.env.SDC_KEY_ID - } - }, (err, client) => { - if (err) { - this.emit('error', err); - return; - } - - this._triton = client.cloudapi; - }); - } - - poll () { - if (this._timeoutId) { - return; - } - - this._timeoutId = setTimeout(() => { - this.check((err) => { - if (err) { - this.emit('error', err); - } - - delete this._timeoutId; - this.poll(); - }); - }, this._frequency); - } - - _getDeploymentGroups (cb) { - const getInstances = (service, next) => { - service.instances({}, (err, instances) => { - if (err) { - return next(err); - } - - next(null, Object.assign({}, service, { - instances - })); - }); - }; - - const getServices = (deploymentGroup, next) => { - deploymentGroup.services({}, (err, services) => { - if (err) { - return next(err); - } - - if (!services || !services.length) { - return next(); - } - - VAsync.forEachParallel({ - inputs: services, - func: getInstances - }, (err, result) => { - if (err) { - return next(err); - } - - next(null, Object.assign({}, deploymentGroup, { - services: result.successes - })); - }); - }); - }; - - const handleDeploymentGroups = (err, deploymentGroups) => { - if (err) { - return cb(err); - } - - VAsync.forEachParallel({ - inputs: deploymentGroups, - func: getServices - }, (err, result) => { - cb(err, result.successes); - }); - }; - - const getDeploymentGroups = (err, portal) => { - if (err || !portal) { - return cb(err); - } - - portal.deploymentGroups({}, handleDeploymentGroups); - }; - - this._data.getPortal({}, getDeploymentGroups); - } - - _getNetworks (networkIds = [], cb) { - VAsync.forEachParallel({ - inputs: networkIds, - func: (id, next) => { - this._triton.getNetwork(id, next); - } - }, (err, results) => { - cb(err, ForceArray((results || {}).successes)); - }); - } - - _getPublicIps (machine, cb) { - this._getNetworks(machine.networks, (err, networks) => { - if (err) { - return cb(err); - } - - const privateNetworkSubnets = networks - .filter((network) => { - return !network['public']; - }) - .map((network) => { - return network.subnet; - }) - .filter(Boolean); - - const cidr = new CIDRMatcher(privateNetworkSubnets); - - const nonPrivateIps = machine.ips.filter((ip) => { - return !cidr.contains(ip); - }); - - cb(null, nonPrivateIps); - }); - } - - _fetchInstanceStatus (instance, cb) { - const { machineId } = instance; - - const handleStatuses = (err, results) => { - if (err) { - this.emit('error', err); - return cb(); - } - - const statuses = ForceArray((results || {}).successes); - - const status = statuses.filter(Boolean).shift(); - - if (!status) { - return cb(null, instance); - } - - const services = ForceArray(status.Services).filter(({ Name }) => { - return Name !== 'containerpilot'; - }); - - cb(null, Object.assign({}, instance, { - cp: Object.assign({}, status, { - Services: services - }) - })); - }; - - const fetchStatus = (ip, next) => { - Wreck.get(`http://${ip}:9090/status`, { - timeout: 1000 // 1s - }, (err, res, payload) => { - if (err) { - this.emit('error', err); - return next(); - } - - if (Buffer.isBuffer(payload)) { - payload = payload.toString(); - } - - try { - const status = JSON.parse(payload); - next(null, status); - } catch (err) { - this.emit('error', err); - next(); - } - }); - }; - - const handlePublicIps = (err, ips) => { - if (err) { - this.emit('error', err); - return cb(); - } - - VAsync.forEachParallel({ - inputs: ips, - func: fetchStatus - }, handleStatuses); - }; - - this._triton.getMachine(machineId, (err, machine) => { - if (err) { - this.emit('error', err); - return cb(); - } - - this._getPublicIps(machine, handlePublicIps); - }); - } - - _fetchServiceStatus (service, cb) { - VAsync.forEachParallel({ - inputs: service.instances, - func: (instance, next) => { - this._fetchInstanceStatus(instance, next); - } - }, (err, results) => { - if (err) { - this.emit('error', err); - } - - cb(null, Object.assign({}, service, { - instances: ForceArray((results || {}).successes) - })); - }); - } - - _fetchDeploymentGroupStatus (dg, cb) { - if (!dg || !dg.services || !dg.services.length) { - return cb(); - } - - VAsync.forEachParallel({ - inputs: dg.services, - func: (service, next) => { - this._fetchServiceStatus(service, next); - } - }, (err, results) => { - if (err) { - this.emit('error', err); - } - - cb(null, Object.assign({}, dg, { - services: ForceArray((results || {}).successes) - })); - }); - } - - _saveInstance ({ id, healthy, watches, jobs }, cb) { - if (!id) { - return cb(); - } - - this._data.updateInstance({ - id, - healthy, - watches, - jobs - }, cb); - } - - _saveService ({ id, instances, connections, branches }, cb) { - if (!id) { - return cb(); - } - - VAsync.forEachParallel({ - inputs: instances, - func: (instance, next) => { - this._saveInstance(instance, next); - } - }, (err) => { - if (err) { - return cb(err); - } - - this._data.updateService({ - id, - connections, - branches - }, cb); - }); - } - - _saveDeploymentGroup (dg, cb) { - VAsync.forEachParallel({ - inputs: dg.services, - func: (service, next) => { - this._saveService(service, next); - } - }, cb); - } - - static _resolveServiceConnections ({ services, service }) { - const watches = Uniq( - Flatten( - ForceArray(service.instances).map(({ watches }) => { - return watches; - }) - ) - ); - - return watches - .map((jobName) => { - return services.reduce((serviceId, service) => { - if (serviceId) { - return serviceId; - } - - const thisServiceJobs = Uniq( - Flatten( - ForceArray(service.instances).map(({ jobs }) => { - return jobs; - }) - ) - ); - - if (thisServiceJobs.indexOf(jobName) >= 0) { - return service.id; - } - - return serviceId; - }, null); - }) - .filter(Boolean) - .filter((serviceId) => { - return service.id !== serviceId; - }); - } - - static _resolveInstanceHealth ({ name }, instance) { - if (!instance) { - return 'UNAVAILABLE'; - } - - if (!instance.cp) { - return 'UNAVAILABLE'; - } - - const jobNames = Get(instance, 'cp.Services'); - - const serviceJobs = jobNames.filter(({ Name }) => { - return Name === name; - }); - - if (serviceJobs.length) { - return serviceJobs.shift().Status.toUpperCase(); - } - - const almostJobNameRegexp = new RegExp(`${name}-.*`); - const almostServiceJobs = jobNames.filter(({ Name }) => { - return almostJobNameRegexp.test(Name); - }); - - if (almostServiceJobs.length) { - return almostServiceJobs.shift().Status.toUpperCase(); - } - - return 'UNKNOWN'; - } - - static _resolveServiceBranches ({ name, slug, instances }) { - if (instances.length <= 1) { - return []; - } - - const deviantJobNames = Uniq(Flatten(instances.map(({ jobs }) => { - return Flatten(jobs.filter((jobName) => { - return new RegExp(`${name}-.*`).test(jobName); - })); - }))); - - if (!deviantJobNames || !deviantJobNames.length) { - return []; - } - - const defaultBranch = instances.reduce((service, { id, jobs }) => { - if (jobs.indexOf(name) >= 0) { - return Object.assign(service, { - instances: service.instances.concat(id) - }); - } - - return service; - }, { - name: name, - slug: slug, - instances: [] - }); - - defaultBranch.id = Hasha(JSON.stringify(defaultBranch)); - - const branches = instances.reduce((branches, { id, jobs }) => { - if (defaultBranch.instances.indexOf(id) >= 0) { - return branches; - } - - const branchName = jobs - .filter((jobName) => { - return deviantJobNames.indexOf(jobName) >= 0; - }) - .shift(); - - if (!branches[branchName]) { - branches[branchName] = { - name: branchName, - slug: ParamCase(branchName), - instances: [] - }; - - branches[branchName].id = Hasha(JSON.stringify(branches[branchName])); - } - - branches[branchName].instances.push(id); - - return branches; - }, {}); - - return Object.values(branches).concat(defaultBranch); - } - - static _resolveDeploymentGroups (dgs) { - return dgs - .filter(Boolean) - .map((dg) => { - return Object.assign({}, dg, { - services: ForceArray(dg.services).map((service) => { - return Object.assign({}, service, { - instances: ForceArray(service.instances).map((instance) => { - const watches = Get(instance, 'cp.Watches', []); - const jobs = Get(instance, 'cp.Services', []).map(({ Name }) => { - return Name; - }); - - return Object.assign({}, instance, { - healthy: ContainerPilotWatcher._resolveInstanceHealth(service, instance), - jobs, - watches - }); - }) - }); - }) - }); - }) - .map((dg) => { - return Object.assign({}, dg, { - services: ForceArray(dg.services).map((service) => { - return Object.assign({}, service, { - branches: ContainerPilotWatcher._resolveServiceBranches(service), - connections: ContainerPilotWatcher._resolveServiceConnections({ - services: dg.services, - service - }) - }); - }) - }); - }); - } - - check (cb) { - if (!this._triton) { - return cb(); - } - - const handleStatuses = (err, results) => { - if (err) { - this.emit('error', err); - } - - const dgs = ContainerPilotWatcher._resolveDeploymentGroups( - ForceArray((results || {}).successes) - ); - - VAsync.forEachParallel({ - inputs: dgs, - func: (dg, next) => { - Queue(dg.id, () => { - return new Promise((resolve) => { - this._saveDeploymentGroup(dg, (err) => { - resolve(); - next(err); - }); - }); - }); - } - }, (err) => { - if (err) { - this.emit('error', err); - } - - cb(null, dgs); - }); - }; - - const fetchStatuses = (err, dgs) => { - if (err) { - this.emit('error', err); - return cb(); - } - - if (!dgs || !dgs.length) { - return cb(); - } - - VAsync.forEachParallel({ - inputs: dgs, - func: (dg, next) => { - this._fetchDeploymentGroupStatus(dg, next); - } - }, handleStatuses); - }; - - this._getDeploymentGroups(fetchStatuses); - } -}; - diff --git a/packages/portal-api/lib/watch/machines.js b/packages/portal-api/lib/watch/machines.js deleted file mode 100644 index 8ec64fe1..00000000 --- a/packages/portal-api/lib/watch/machines.js +++ /dev/null @@ -1,660 +0,0 @@ -'use strict'; - -// const Assert = require('assert'); -const TritonWatch = require('triton-watch'); -const Get = require('lodash.get'); -const Find = require('lodash.find'); -const Boom = require('boom'); -const Util = require('util'); -const ForceArray = require('force-array'); -const VAsync = require('vasync'); -const Queue = require('./queue'); - - -const DEPLOYMENT_GROUP = 'docker:label:com.docker.compose.project'; -const SERVICE = 'docker:label:com.docker.compose.service'; -const HASH = 'docker:label:com.docker.compose.config-hash'; - -const ACTION_REMOVE_STATUSES = [ - 'STOPPING', - 'STOPPED', - 'OFFLINE', - 'DELETED', - 'DESTROYED', - 'FAILED', - 'INCOMPLETE', - 'UNKNOWN' -]; - -const ACTION_CREATE_STATUSES = [ - 'READY', - 'ACTIVE', - 'RUNNING', - 'STOPPED', - 'OFFLINE', - 'FAILED', - 'INCOMPLETE', - 'UNKNOWN' -]; - -const SERVICE_STOPPING_STATUSES = [ - 'STOPPED', - 'OFFLINE', - 'FAILED', - 'INCOMPLETE', - 'UNKNOWN' -]; - -const SERVICE_DELETING_STATUSES = [ - 'DELETED', - 'DESTROYED', - 'FAILED', - 'INCOMPLETE', - 'UNKNOWN' -]; - -const isNotFound = (err) => { - return err && (err['typeof'] === Boom.notFound); -}; - -module.exports = class MachineWatcher { - constructor (options) { - options = options || {}; - - // todo assert options - this._data = options.data; - this._server = options.server; - this._frequency = 200; - - this._tritonWatch = new TritonWatch({ - frequency: this._frequency, - triton: { - profile: { - url: options.url || process.env.SDC_URL, - account: options.account || process.env.SDC_ACCOUNT, - keyId: options.keyId || process.env.SDC_KEY_ID - } - } - }); - - this._waitingForPlan = []; - this._isTritonWatchPolling = false; - - this._tritonWatch.on('change', (machine) => { - return this.onChange(machine); - }); - - this._tritonWatch.on('all', (machines) => { - machines.forEach((machine) => { - this.onChange(machine); - }); - }); - } - - poll () { - if (!this._isTritonWatchPolling) { - this._tritonWatch.poll(); - this._isTritonWatchPolling = true; - } - - if (this._isWaitingPolling) { - return; - } - - this._isWaitingPolling = true; - - setTimeout(() => { - this._isWaitingPolling = false; - this._checkForWaiting(); - }, this._frequency); - } - - _checkForWaiting () { - this._waitingForPlan.forEach(this.onChange); - } - - getContainers () { - return this._tritonWatch.getContainers(); - } - - getDeploymentGroup (name, cb) { - this._data.getDeploymentGroup({ name }, (err, deploymentGroup) => { - if (err) { - return cb(err); - } - - return cb(null, deploymentGroup); - }); - } - - getService ({ serviceName, deploymentGroupId }, cb) { - this._data.getServices({ name: serviceName, deploymentGroupId }, (err, services) => { - if (err) { - return cb(err); - } - - if (!services || !services.length) { - return cb(); - } - - return cb(null, services.pop()); - }); - } - - static getInstances (service, cb) { - service.instances() - .then((instances) => { - return cb(null, instances); - }) - .catch((err) => { - return cb(err); - }); - } - - static getVersion (deploymentGroup, cb) { - if (typeof deploymentGroup.version !== 'function') { - return cb(new Error('version must be a function')); - } - - deploymentGroup.version() - .then((version) => { - return cb(null, version); - }) - .catch((err) => { - return cb(err); - }); - } - - createInstance ({ deploymentGroup, machine, instances, service }, cb) { - this._server.log(['debug', 'error'], `-> detected that machine ${machine.name} was created`); - - const status = (machine.state || '').toUpperCase(); - - if (status === 'DELETED') { - return cb(); - } - - const instance = { - name: machine.name, - status, - deploymentGroupId: deploymentGroup.id, - machineId: machine.id, - primaryIp: machine.primaryIp - }; - - this._server.log(['debug'], '-> creating instance', Util.inspect(instance)); - this._data.createInstance(instance, (err, instance) => { - if (err) { - return cb(err); - } - - const payload = { - id: service.id, - instances: instances.concat(instance) - }; - - this._server.log(['debug'], '-> updating service', Util.inspect(payload)); - this._data.updateService(payload, cb); - }); - } - - updateInstance ({ machine, instance, instances, service }, cb) { - console.error(`-> detected that machine ${machine.name} was updated`); - - const updatedInstance = { - id: instance.id, - primaryIp: machine.primaryIp, - status: (machine.state || '').toUpperCase() - }; - - this._server.log(['debug'], '-> updating instance', Util.inspect(updatedInstance)); - this._data.updateInstance(updatedInstance, (err) => { - if (err) { - return cb(err); - } - - if (['DELETED', 'DESTROYED'].indexOf(machine.state.toUpperCase()) < 0) { - return cb(); - } - - - const payload = { - id: service.id, - instances: instances.filter(({ id }) => { - return id !== instance.id; - }) - }; - - this._server.log(['debug'], '-> updating service', Util.inspect(payload)); - this._data.updateService(payload, cb); - }); - } - - resolveChange ({ deploymentGroup, version, service, instances, machine }, cb) { - console.error(`-> resolving change for machine ${machine.name}`); - - const SERVICE_STATUS = Get(service, 'status', 'UNKNOWN').toUpperCase(); - const MACHINE_STATUS = Get(machine, 'state', 'UNKNOWN').toUpperCase(); - - const hasPlan = Boolean(Get(version, 'plan.hasPlan', true)); - const serviceName = service.name; - - console.error(`-> detected meta for machine ${machine.name} ${Util.inspect({ - SERVICE_STATUS, - MACHINE_STATUS, - hasPlan, - serviceName - })}`); - - const ActionResolvers = { - '_CREATE_OR_REMOVE': (action, cb) => { - console.error(`-> got _CREATE_OR_REMOVE action for "${machine.name}"`); - - let processed = ForceArray(action.processed); - const completed = processed.length === action.toProcess; - - if (completed) { - console.error('-> action was already completed'); - return cb(null, { - action, - completed: true - }); - } - - if (processed.indexOf(machine.id) >= 0) { - console.error('-> machine was already processed'); - return cb(null, { - action, - completed - }); - } - - processed = processed.concat([machine.id]); - - cb(null, { - action: Object.assign({}, action, { - processed - }), - completed: processed.length === action.toProcess - }); - }, - 'NOOP': (action, cb) => { - console.error(`-> got NOOP action for "${machine.name}"`); - - cb(null, { - action, - completed: true - }); - }, - // scenarios: scale down or removed service - // so far, the logic is the same for CREATE and REMOVE - 'REMOVE': (action, cb) => { - console.error(`-> got REMOVE action for "${machine.name}"`); - - if (ACTION_REMOVE_STATUSES.indexOf(MACHINE_STATUS) < 0) { - console.error(`-> since "${machine.name}" is "${MACHINE_STATUS}", nothing to do here`); - - return cb(null, { - action, - completed: false - }); - } - - if (action.machines.indexOf(machine.id) < 0) { - console.error(`-> since "${machine.name}" didn't exist, no need to process its removal`); - return cb(null, { - action, - completed: false - }); - } - - ActionResolvers._CREATE_OR_REMOVE(action, cb); - }, - // scenarios: scale up, recreate, create - // so far, the logic is the same for CREATE and REMOVE - 'CREATE': (action, cb) => { - console.error(`-> got CREATE action for "${machine.name}"`); - - if (ACTION_CREATE_STATUSES.indexOf(MACHINE_STATUS) < 0) { - console.error(`-> since "${machine.name}" is "${MACHINE_STATUS}", nothing to do here`); - - return cb(null, { - action, - completed: false - }); - } - - if (action.machines.indexOf(machine.id) >= 0) { - console.error(`-> since "${machine.name}" already existed, no need to process its creation`); - return cb(null, { - action, - completed: false - }); - } - - ActionResolvers._CREATE_OR_REMOVE(action, cb); - }, - 'START': (action, cb) => { - console.error(`-> got START action for "${machine.name}". redirecting`); - return ActionResolvers.NOOP(action, cb); - } - }; - - const toBeActiveServiceResolver = (cb) => { - if (!version || !version.plan) { - return cb(); - } - - VAsync.forEachParallel({ - inputs: version.plan, - func: (action, next) => { - if (action.service !== serviceName) { - return next(null, { - action - }); - } - - const ACTION_TYPE = Get(action, 'type', 'NOOP').toUpperCase(); - ActionResolvers[ACTION_TYPE](action, next); - } - }, (err, result) => { - if (err) { - return cb(err); - } - - const newActions = ForceArray(result.successes); - - console.error(`-> got new actions for "${service.name}" ${Util.inspect(newActions)}`); - - const newServiceActions = newActions.filter(({ action }) => { - return action.service === serviceName; - }); - - const isCompleted = newServiceActions.every(({ completed }) => { - return completed; - }); - - console.error(`-> are all actions for "${service.name}" completed? ${isCompleted}`); - - const newPlan = newActions.map(({ action }) => { - return action; - }); - - VAsync.parallel({ - funcs: [ - (cb) => { - console.error(`-> updating Version ${version.id} with new plan ${Util.inspect(newPlan)}`); - - this._data.updateVersion({ - id: version.id, - plan: newPlan - }, cb); - }, - (cb) => { - if (!isCompleted) { - return cb(); - } - - console.error(`-> updating Service ${service.name} with new status: ACTIVE`); - - return this._data.updateService({ - id: service.id, - status: 'ACTIVE' - }, cb); - } - ] - }, cb); - }); - }; - - const ServiceResolvers = { - 'ACTIVE': (cb) => { - console.error(`-> got ACTIVE service "${service.name}". nothing to do`); - - cb(); - }, - 'PROVISIONING': (cb) => { - console.error(`-> got PROVISIONING service "${service.name}"`); - - toBeActiveServiceResolver(cb); - }, - 'SCALING': (cb) => { - console.error(`-> got SCALING service "${service.name}"`); - - toBeActiveServiceResolver(cb); - }, - 'STOPPING': (cb) => { - console.error(`-> got STOPPING service "${service.name}"`); - - if (SERVICE_STOPPING_STATUSES.indexOf(MACHINE_STATUS) < 0) { - return cb(); - } - - const isComplete = instances - .filter(({ machineId }) => { - return machineId !== machine.id; - }) - .every(({ status }) => { - return SERVICE_STOPPING_STATUSES.indexOf(status) >= 0; - }); - - if (!isComplete) { - return cb(); - } - - this._data.updateService({ - id: service.id, - status: 'STOPPED' - }, cb); - }, - 'STOPPED': (cb) => { - return ServiceResolvers.ACTIVE(cb); - }, - 'DELETING': (cb) => { - console.error(`-> got DELETING service "${service.name}"`); - - if (SERVICE_DELETING_STATUSES.indexOf(MACHINE_STATUS) < 0) { - return cb(); - } - - const isComplete = instances - .filter(({ machineId }) => { - return machineId !== machine.id; - }) - .every(({ status }) => { - return SERVICE_DELETING_STATUSES.indexOf(status) >= 0; - }); - - if (!isComplete) { - return cb(); - } - - VAsync.parallel({ - funcs: [ - (cb) => { - console.error(`-> updating Service ${service.name} to set it DELETED`); - - this._data.updateService({ - id: service.id, - status: 'DELETED' - }, cb); - }, - (cb) => { - console.error(`-> updating DeploymentGroup ${deploymentGroup.id} to remove Service ${service.name}`); - - deploymentGroup.services({}, (err, services) => { - if (err) { - return cb(err); - } - - this._data.updateDeploymentGroup({ - id: deploymentGroup.id, - services: services.filter(({ id }) => { - return service.id !== id; - }) - }, cb); - }); - } - ] - }, cb); - }, - 'DELETED': (cb) => { - return ServiceResolvers.ACTIVE(cb); - }, - 'RESTARTING': (cb) => { - return ServiceResolvers.ACTIVE(cb); - }, - 'UNKNOWN': (cb) => { - return ServiceResolvers.ACTIVE(cb); - } - }; - - const instance = Find(instances, ['machineId', machine.id]); - - const isNew = instances - .every(({ machineId }) => { - return machine.id !== machineId; - }); - - const handleCreateOrUpdatedInstance = (err) => { - if (err) { - return cb(err); - } - - console.error(`-> created/updated machine ${machine.name}`); - - if (!hasPlan) { - console.error(`-> plan for ${service.name} is still not available. queuing`); - this._waitingForPlan.push(machine); - return cb(); - } - - const serviceResolver = ServiceResolvers[SERVICE_STATUS] ? - ServiceResolvers[SERVICE_STATUS] : - ServiceResolvers.UNKNOWN; - - serviceResolver(cb); - }; - - const createOrUpdateInstance = isNew ? - this.createInstance : - this.updateInstance; - - createOrUpdateInstance.call(this, { - deploymentGroup, - machine, - instances, - instance, - service - }, handleCreateOrUpdatedInstance); - } - - onChange (machine) { - if (!machine) { - console.error('-> `change` event received without machine data'); - return; - } - - // console.log('-> `change` event received', Util.inspect(machine)); - - const { id, tags = {} } = machine; - - // assert id existence - if (!id) { - console.error('-> `change` event received for a machine without `id`'); - return; - } - - // assert that it's a docker-compose project - const isCompose = [DEPLOYMENT_GROUP, SERVICE, HASH].every( - (name) => { - return tags[name]; - } - ); - - if (!isCompose) { - console.error(`-> Changed machine ${id} was not provisioned by docker-compose`); - return; - } - - const deploymentGroupName = tags[DEPLOYMENT_GROUP]; - const serviceName = tags[SERVICE]; - - const getInstancesAndVersion = ({ - service, - deploymentGroup - }, cb) => { - MachineWatcher.getInstances(service, (err, instances = []) => { - if (err && !isNotFound(err)) { - return cb(err); - } - - MachineWatcher.getVersion(deploymentGroup, (err, version) => { - if (err) { - return cb(err); - } - - this.resolveChange({ - deploymentGroup, - version, - service, - instances, - machine - }, cb); - }); - }); - }; - - // assert that service exists - const assertService = (deploymentGroup, cb) => { - this.getService({ - serviceName, - deploymentGroupId: deploymentGroup.id - }, (err, service) => { - if (isNotFound(err) || !service) { - console.error(`Service "${serviceName}" form DeploymentGroup "${deploymentGroupName}" for machine ${id} not found`); - return cb(); - } - - if (err) { - return cb(err); - } - - getInstancesAndVersion({ - service, - deploymentGroup - }, cb); - }); - }; - - // assert that project managed by this portal - // also, lock into `deploymentGroupId` queue - this.getDeploymentGroup(deploymentGroupName, (err, deploymentGroup) => { - if (isNotFound(err) || !deploymentGroup) { - console.error(`DeploymentGroup "${deploymentGroupName}" for machine ${id} not found`); - return; - } - - if (err) { - console.error(err); - return; - } - - Queue(deploymentGroup.id, () => { - return new Promise((resolve) => { - assertService(deploymentGroup, (err) => { - if (err) { - console.error(err); - } - - resolve(); - }); - }); - }); - }); - } -}; - -module.exports.DEPLOYMENT_GROUP = DEPLOYMENT_GROUP; -module.exports.SERVICE = SERVICE; -module.exports.HASH = HASH; diff --git a/packages/portal-api/lib/watch/queue.js b/packages/portal-api/lib/watch/queue.js deleted file mode 100644 index 07d822eb..00000000 --- a/packages/portal-api/lib/watch/queue.js +++ /dev/null @@ -1,18 +0,0 @@ -'use strict'; - -const Throat = require('throat'); - -module.exports = (() => { - const _queues = {}; - - // pushToQueue - return (id, cb) => { - if (_queues[id]) { - _queues[id](cb); - return; - } - - _queues[id] = Throat(1); - _queues[id](cb); - }; -})(); diff --git a/packages/portal-api/package.json b/packages/portal-api/package.json deleted file mode 100644 index e3aa86fb..00000000 --- a/packages/portal-api/package.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "name": "portal-api", - "version": "1.8.8", - "description": "", - "main": "./lib/index.js", - "scripts": { - "rethinkdb-up": "docker run -d -p 8080:8080 -p 28015:28015 -p 29015:29015 --name rethinkdb rethinkdb", - "rethinkdb-down": "docker rm -f rethinkdb", - "bootstrap": "node ./bootstrap-data", - "lint": "belly-button --fix", - "lint-ci": "belly-button", - "test": "lab -c", - "test-unit": "lab -c -P unit.* --leaks", - "test-docker": "docker-compose -f test-compose.yml down -v && docker-compose -f test-compose.yml up --abort-on-container-exit --build --force-recreate api", - "test-ci": "echo 0", - "start": "node server.js", - "dev": "CORS=1 NAMESPACE=api node server.js", - "prepublish": "echo 0" - }, - "keywords": [], - "author": "wyatt", - "license": "MPL-2.0", - "devDependencies": { - "belly-button": "^4.0.1", - "brule": "^2.0.0", - "good": "^7.3.0", - "good-console": "^6.4.0", - "good-squeeze": "^5.0.2", - "hapi": "^16.5.2", - "lab": "^14.2.2", - "lodash.findindex": "^4.6.0", - "wreck": "^12.4.0" - }, - "dependencies": { - "boom": "^5.2.0", - "cidr-matcher": "^1.0.5", - "docker-compose-client": "^1.1.0", - "dockerode": "^2.5.0", - "force-array": "^3.1.0", - "graphi": "^3.0.0", - "hasha": "^3.0.0", - "hoek": "^4.2.0", - "joyent-cp-gql-schema": "^1.7.0", - "lodash.find": "^4.6.0", - "lodash.flatten": "^4.4.0", - "lodash.get": "^4.4.2", - "lodash.uniq": "^4.5.0", - "lodash.uniqby": "^4.7.0", - "param-case": "^2.1.1", - "penseur": "^7.12.3", - "piloted": "^3.2.0", - "prom-query": "^1.0.0", - "throat": "^4.1.0", - "toppsy": "^1.1.0", - "triton": "^5.3.1", - "triton-watch": "^1.1.0", - "uuid": "^3.1.0", - "vasync": "^2.0.0" - } -} diff --git a/packages/portal-api/server.js b/packages/portal-api/server.js deleted file mode 100644 index 13900383..00000000 --- a/packages/portal-api/server.js +++ /dev/null @@ -1,64 +0,0 @@ -'use strict'; - -const Brule = require('brule'); -const Good = require('good'); -const Hapi = require('hapi'); -const Toppsy = require('toppsy'); -const Portal = require('./lib'); - -const server = new Hapi.Server(); - -server.connection({ - port: 3000, - routes: { - cors: Boolean(process.env.CORS) - } -}); - -const goodOptions = { - ops: { - interval: 1000 - }, - reporters: { - consoleReporter: [{ - module: 'good-squeeze', - name: 'Squeeze', - args: [{ - log: '*', - response: '*', - error: '*' - }] - }, { - module: 'good-console' - }, 'stdout'] - } -}; - -server.register([ - Brule, - Portal, - { - register: Good, - options: goodOptions - }, - { - register: Toppsy, - options: { - namespace: 'portal', - subsystem: 'api' - } - } -], (err) => { - handlerError(err); - server.start((err) => { - handlerError(err); - console.log(`server started at http://localhost:${server.info.port}`); - }); -}); - -function handlerError (error) { - if (error) { - console.error(error); - process.exit(1); - } -} diff --git a/packages/portal-api/test-Dockerfile b/packages/portal-api/test-Dockerfile deleted file mode 100644 index e1c248d0..00000000 --- a/packages/portal-api/test-Dockerfile +++ /dev/null @@ -1,30 +0,0 @@ -FROM node:8-alpine - -# Install dependencies -RUN set -x \ - && apk update \ - && apk add --update curl bash build-base python zeromq-dev openssh \ - && apk upgrade \ - && rm -rf /var/cache/apk/* - -# Install ContainerPilot -ENV CP_SHA1 8d680939a8a5c8b27e764d55a78f5e3ae7b42ef4 -ENV CONTAINERPILOT_VERSION 3.3.3 -RUN curl -Lo /tmp/containerpilot.tar.gz "https://github.com/joyent/containerpilot/releases/download/${CONTAINERPILOT_VERSION}/containerpilot-${CONTAINERPILOT_VERSION}.tar.gz" \ - && echo "${CP_SHA1} /tmp/containerpilot.tar.gz" | sha1sum -c \ - && tar zxf /tmp/containerpilot.tar.gz -C /bin \ - && rm /tmp/containerpilot.tar.gz - -# Copy required files -RUN mkdir -p /opt/app/ -COPY ./ /opt/app/ -COPY test/containerpilot.json5 /etc/containerpilot.json5 -COPY test/prestart.sh /bin/prestart.sh -ENV CONTAINERPILOT /etc/containerpilot.json5 - - -# Install dependencies -WORKDIR /opt/app/ -RUN npm install - -CMD ["/bin/containerpilot"] diff --git a/packages/portal-api/test-compose.yml b/packages/portal-api/test-compose.yml deleted file mode 100644 index 9d2ae2d4..00000000 --- a/packages/portal-api/test-compose.yml +++ /dev/null @@ -1,54 +0,0 @@ -consul: - image: autopilotpattern/consul:0.7.2-r0.8 - command: > - /usr/local/bin/containerpilot - /bin/consul agent -server - -config-dir=/etc/consul - -log-level=err - -bootstrap-expect 1 - -ui-dir /ui - restart: always - mem_limit: 128m - expose: - - 8500 - dns: - - 127.0.0.1 -compose-api: - image: joyent/copilot-compose - links: - - consul:consul - expose: - - 4242 - env_file: - - ../../_env - environment: - - CONSUL=consul - restart: always -rethinkdb: - image: autopilotpattern/rethinkdb:2.3.5r1 - restart: always - mem_limit: 1g - links: - - consul:consul - environment: - - CONSUL=consul - - CONSUL_AGENT=1 - expose: - - 8080 - - 28015 - - 29015 - dns: - - 127.0.0.1 -api: - build: ./ - dockerfile: ./test-Dockerfile - links: - - consul:consul - - rethinkdb:rethinkdb - - compose-api:compose-api - env_file: - - ../../_env - environment: - - CONSUL=consul - dns: - - 127.0.0.1 diff --git a/packages/portal-api/test/_mocks/data.js b/packages/portal-api/test/_mocks/data.js deleted file mode 100644 index 8bcc8af8..00000000 --- a/packages/portal-api/test/_mocks/data.js +++ /dev/null @@ -1,73 +0,0 @@ -'use strict'; - -const FindIndex = require('lodash.findindex'); - -module.exports = ({ deploymentGroups = [], services = [], instances = [] }) => { - const getInstances = (serviceId) => { - return (opts, cb) => { - cb(null, instances - .filter((instance) => { - return instance.serviceId === serviceId; - }) - ); - }; - }; - - const getServices = (deploymentGroupId) => { - return (opts, cb) => { - cb(null, services - .filter((service) => { - return service.deploymentGroupId === deploymentGroupId; - }) - .map((service) => { - return Object.assign({}, service, { - instances: getInstances(service.id) - }); - }) - ); - }; - }; - - const getDeploymentGroups = (opts, cb) => { - cb(null, deploymentGroups - .map((dg) => { - return Object.assign({}, dg, { - services: getServices(dg.id) - }); - }) - ); - }; - - const getPortal = (opts, cb) => { - cb(null, { - deploymentGroups: getDeploymentGroups - }); - }; - - const updateInstance = (instance, cb) => { - const instanceIndex = FindIndex(instances, ['id', instance.id]); - const updatedInstance = Object.assign( - {}, - instances[instanceIndex], - instance - ); - - instances[instanceIndex] = updatedInstance; - return updatedInstance; - }; - - const updateService = (service, cb) => { - const serviceIndex = FindIndex(service, ['id', service.id]); - const updatedService = Object.assign({}, services[serviceIndex], service); - - services[serviceIndex] = updatedService; - return updatedService; - }; - - return { - getPortal, - updateInstance, - updateService - }; -}; - diff --git a/packages/portal-api/test/_mocks/triton.js b/packages/portal-api/test/_mocks/triton.js deleted file mode 100644 index cab9d723..00000000 --- a/packages/portal-api/test/_mocks/triton.js +++ /dev/null @@ -1,26 +0,0 @@ -'use strict'; - -const Find = require('lodash.find'); - -module.exports = ({ machines = [], networks = [] }) => { - const getMachine = (machineId, cb) => { - cb(null, Find(machines, ['id', machineId])); - }; - - const getNetwork = (networkId, cb) => { - cb(null, Find(networks, ['id', networkId])); - }; - - const createClient = (opts, cb) => { - return cb(null, { - cloudapi: { - getMachine, - getNetwork - } - }); - }; - - return { - createClient - }; -}; diff --git a/packages/portal-api/test/containerpilot.json5 b/packages/portal-api/test/containerpilot.json5 deleted file mode 100644 index 3edb4695..00000000 --- a/packages/portal-api/test/containerpilot.json5 +++ /dev/null @@ -1,31 +0,0 @@ -{ - consul: 'consul:8500', - jobs: [ - { - name: 'setup-config', - exec: '/bin/prestart.sh', - when: { - source: 'watch.rethinkdb', - once: 'healthy' - } - }, - { - name: 'tests', - exec: 'node node_modules/.bin/lab -c -m 10000', - when: { - source: 'setup-config', - once: 'exitSuccess' - } - } - ], - watches: [ - { - name: 'rethinkdb', - interval: 5 - }, - { - name: 'docker-compose-api', - interval: 5 - } - ] -} diff --git a/packages/portal-api/test/data/docker-compose.yml b/packages/portal-api/test/data/docker-compose.yml deleted file mode 100644 index 519387b5..00000000 --- a/packages/portal-api/test/data/docker-compose.yml +++ /dev/null @@ -1,2 +0,0 @@ -traefik: - image: traefik:latest diff --git a/packages/portal-api/test/data/integration.js b/packages/portal-api/test/data/integration.js deleted file mode 100644 index 49ba8492..00000000 --- a/packages/portal-api/test/data/integration.js +++ /dev/null @@ -1,841 +0,0 @@ -'use strict'; - -const Fs = require('fs'); -const Path = require('path'); -const { describe, it, beforeEach, expect } = exports.lab = require('lab').script(); -const PortalData = require('../../lib/data'); - - -const internals = { - options: { - name: 'test', - db: { - host: 'rethinkdb' - }, - server: { - log: function () {} - } - }, - composeFile: Fs.readFileSync(Path.join(__dirname, 'docker-compose.yml')).toString() -}; - - -beforeEach((done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - if (err) { - console.error(err); - } - - data._db.r.dbDrop('test').run(data._db._connection, () => { - done(); - }); - }); -}); - -describe('portals', () => { - describe('getPortal()', () => { - it('retrieves a single portal record', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - const datacenter = { - region: 'us-sw-1' - }; - - data.createDatacenter(datacenter, (err, createdDatacenter) => { - expect(err).to.not.exist(); - const portal = { - datacenter: { - id: createdDatacenter.id - } - }; - - data.createPortal(portal, (err, createdPortal) => { - expect(err).to.not.exist(); - expect(createdPortal.id).to.exist(); - data.getPortal({}, (err, retrievedPortal) => { - expect(err).to.not.exist(); - expect(retrievedPortal.id).to.exist(); - expect(retrievedPortal.username).to.equal(portal.username); - done(); - }); - }); - }); - }); - }); - }); -}); - -describe('deployment groups', () => { - describe('createDeploymentGroup()', () => { - it('creates a deployment group record in the deployment_groups table', (done) => { - const data = new PortalData(internals.options); - const name = 'User Services'; - - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - expect(deploymentGroup.id).to.exist(); - done(); - }); - }); - }); - }); - - describe('getDeploymentGroup()', () => { - it('gets a deployment group record from the deployment_groups table', (done) => { - const data = new PortalData(internals.options); - const name = 'User Services'; - - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name }, (err, createdDeploymentGroup) => { - expect(err).to.not.exist(); - expect(createdDeploymentGroup.id).to.exist(); - data.getDeploymentGroup({ id: createdDeploymentGroup.id }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - expect(deploymentGroup.name).to.equal(createdDeploymentGroup.name); - done(); - }); - }); - }); - }); - }); - - describe('getDeploymentGroups()', () => { - it('gets a list of deployment group records from the deployment_groups table', (done) => { - const data = new PortalData(internals.options); - const name = 'User Services'; - - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name }, (err, createdDeploymentGroup1) => { - expect(err).to.not.exist(); - expect(createdDeploymentGroup1.id).to.exist(); - data.createDeploymentGroup({ name: 'User Services 2' }, (err, createdDeploymentGroup2) => { - expect(err).to.not.exist(); - expect(createdDeploymentGroup1.id).to.exist(); - - data.getDeploymentGroups({ ids: [createdDeploymentGroup1.id, createdDeploymentGroup2.id] }, (err, deploymentGroups) => { - expect(err).to.not.exist(); - expect(deploymentGroups.length).to.be.greaterThan(1); - data.getDeploymentGroups({ name }, (err, deploymentGroups) => { - expect(err).to.not.exist(); - done(); - }); - }); - }); - }); - }); - }); - }); -}); - -describe('datacenters', () => { - describe('createDatacenter()', () => { - it('creates a new datacenter record', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - const datacenter = { - region: 'us-sw-1' - }; - - data.createDatacenter(datacenter, (err, result) => { - expect(err).to.not.exist(); - expect(result.id).to.exist(); - expect(result.region).to.equal(datacenter.region); - done(); - }); - }); - }); - }); - - describe('getDatacenter()', () => { - it('retrieves a datacenter record from an id', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - const datacenter = { - region: 'us-sw-1' - }; - - data.createDatacenter(datacenter, (err, createdDatacenter) => { - expect(err).to.not.exist(); - expect(createdDatacenter.id).to.exist(); - data.getDatacenter({ id: createdDatacenter.id }, (err, retrievedDatacenter) => { - expect(err).to.not.exist(); - expect(retrievedDatacenter.region).to.equal(datacenter.region); - done(); - }); - }); - }); - }); - - it('retrieves a datacenter record from a region', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - const datacenter = { - region: 'us-sw-1' - }; - - data.createDatacenter(datacenter, (err, createdDatacenter) => { - expect(err).to.not.exist(); - expect(createdDatacenter.id).to.exist(); - data.getDatacenter({ region: createdDatacenter.region }, (err, retrievedDatacenter) => { - expect(err).to.not.exist(); - expect(retrievedDatacenter.region).to.equal(datacenter.region); - done(); - }); - }); - }); - }); - }); - - describe('getDatacenters()', () => { - it('retrieves all datacenter records', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - const datacenter1 = { - region: 'us-sw-1' - }; - - const datacenter2 = { - region: 'us-west-1' - }; - - data.createDatacenter(datacenter1, (err, createdDatacenter1) => { - expect(err).to.not.exist(); - data.createDatacenter(datacenter2, (err, createdDatacenter2) => { - expect(err).to.not.exist(); - data.getDatacenters((err, datacenters) => { - expect(err).to.not.exist(); - expect(datacenters.length).to.be.greaterThan(1); - done(); - }); - }); - }); - }); - }); - }); -}); - - -describe('versions', () => { - describe('createVersion()', () => { - it('creates a new version record in the versions table', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - - data.provisionManifest(clientManifest, (err, manifest) => { - expect(err).to.not.exist(); - - const clientVersion = { - deploymentGroupId: deploymentGroup.id, - manifestId: manifest.id, - scale: [{ - serviceName: 'consul', - replicas: 3 - }], - plan: { - running: true, - actions: [{ - type: 'start', - service: 'consul', - machines: ['vmid', 'vmid'] - }] - } - }; - - data.createVersion(clientVersion, (err, result) => { - expect(err).to.not.exist(); - expect(result.id).to.exist(); - expect(result.scale).to.equal(clientVersion.scale); - done(); - }); - }); - }); - }); - }); - }); - - describe('getVersion()', () => { - it('retrieves a version record with an id or manifestId', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - - data.provisionManifest(clientManifest, (err, manifest) => { - expect(err).to.not.exist(); - - const clientVersion = { - manifestId: manifest.id, - deploymentGroupId: deploymentGroup.id, - scale: [{ - serviceName: 'consul', - replicas: 3 - }], - plan: { - running: true, - actions: [{ - type: 'start', - service: 'consul', - machines: ['vmid', 'vmid'] - }] - } - }; - - data.createVersion(clientVersion, (err, result) => { - expect(err).to.not.exist(); - expect(result.id).to.exist(); - expect(result.scale).to.equal(clientVersion.scale); - data.getVersion({ id: result.id }, (err, retrievedVersion1) => { - expect(err).to.not.exist(); - expect(retrievedVersion1.id).to.equal(result.id); - data.getVersion({ manifestId: result.manifestId }, (err, retrievedVersion2) => { - expect(err).to.not.exist(); - expect(retrievedVersion1.id).to.equal(retrievedVersion2.id); - done(); - }); - }); - }); - }); - }); - }); - }); - }); - - describe('getVersions()', () => { - it('retrieve versions records with a manifestId', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - - data.provisionManifest(clientManifest, (err, manifest) => { - expect(err).to.not.exist(); - - const clientVersion = { - manifestId: manifest.id, - deploymentGroupId: deploymentGroup.id, - scale: [{ - serviceName: 'consul', - replicas: 3 - }], - plan: { - running: true, - actions: [{ - type: 'start', - service: 'consul', - machines: ['vmid', 'vmid'] - }] - } - }; - - data.createVersion(clientVersion, (err, result) => { - expect(err).to.not.exist(); - expect(result.id).to.exist(); - expect(result.scale).to.equal(clientVersion.scale); - data.getVersions({ manifestId: clientVersion.manifestId }, (err, versions) => { - expect(err).to.not.exist(); - expect(versions.length).to.equal(1); - done(); - }); - }); - }); - }); - }); - }); - - it('retrieve versions records with a deployment group id', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - - data.provisionManifest(clientManifest, (err, manifest) => { - expect(err).to.not.exist(); - - const clientVersion = { - manifestId: manifest.id, - deploymentGroupId: deploymentGroup.id, - scale: [{ - serviceName: 'consul', - replicas: 3 - }], - plan: { - running: true, - actions: [{ - type: 'start', - service: 'consul', - machines: ['vmid', 'vmid'] - }] - } - }; - - data.createVersion(clientVersion, (err, version) => { - expect(err).to.not.exist(); - - data.getVersions({ deploymentGroupId: deploymentGroup.id }, (err, versions) => { - expect(err).to.not.exist(); - expect(versions.length).to.equal(1); - expect(versions[0].id).to.equal(version.id); - done(); - }); - }); - }); - }); - }); - }); - }); -}); - - -describe('manifests', () => { - describe('provisionManifest()', () => { - it('creates a new manifest record in the manifests table', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - data.provisionManifest(clientManifest, (err, result) => { - expect(err).to.not.exist(); - expect(result.id).to.exist(); - expect(result.created).to.exist(); - done(); - }); - }); - }); - }); - }); - - describe('getManifests()', () => { - it('retrieves manifests using from a manifest type', (done) => { - const data = new PortalData(internals.options); - data.on('error', (err) => { - expect(err).to.not.exist(); - }); - - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - data.provisionManifest(clientManifest, (err, result) => { - expect(err).to.not.exist(); - data.getManifests({ type: clientManifest.type }, (err, manifests) => { - expect(err).to.not.exist(); - expect(manifests.length).to.be.greaterThan(0); - done(); - }); - }); - }); - }); - }); - - it('retrieves manifests using from a deployment group id', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - - data.provisionManifest(clientManifest, (err, result) => { - expect(err).to.not.exist(); - data.getManifests({ type: clientManifest.type }, (err, manifests) => { - expect(err).to.not.exist(); - expect(manifests.length).to.be.greaterThan(0); - done(); - }); - }); - }); - }); - }); - }); -}); - - -describe('instances', () => { - describe('createInstance()', () => { - it('creates a new instance record in the instances table', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - - const clientInstance = { - name: 'my test', - machineId: 'something', - status: 'CREATED' - }; - - data.createInstance(clientInstance, (err, result) => { - expect(err).to.not.exist(); - expect(result.id).to.exist(); - expect(result.name).to.equal(clientInstance.name); - done(); - }); - }); - }); - }); - - describe('getInstance()', () => { - it('retrieves an instance record from the instances table', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - - const clientInstance = { - name: 'my test', - machineId: 'something', - status: 'CREATED' - }; - - data.createInstance(clientInstance, (err, result) => { - expect(err).to.not.exist(); - expect(result.id).to.exist(); - data.getInstance({ id: result.id }, (err, instance) => { - expect(err).to.not.exist(); - expect(instance.id).to.equal(result.id); - expect(instance.name).to.equal(result.name); - expect(instance.status).to.equal(result.status); - expect(instance.machineId).to.equal(result.machineId); - done(); - }); - }); - }); - }); - }); -}); - - -describe('packages', () => { - describe('createPackage()', () => { - it('creates a new package record in the packages table', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - - const clientPackage = { - name: 'small', - type: 'mem-small', - memory: 12123413, - disk: 4224243, - swap: 1224324, - lwps: 12, - vcpus: 1, - version: '', - group: '' - }; - - data.createPackage(clientPackage, (err, result) => { - expect(err).to.not.exist(); - expect(result.id).to.exist(); - expect(result.name).to.equal(clientPackage.name); - done(); - }); - }); - }); - }); - - describe('getPackage()', () => { - it('retrieves a package record from the packages table', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - - const clientPackage = { - name: 'small', - type: 'mem-small', - memory: 12123413, - disk: 4224243, - swap: 1224324, - lwps: 12, - vcpus: 1, - version: '', - group: '' - }; - - data.createPackage(clientPackage, (err, createdPackage) => { - expect(err).to.not.exist(); - expect(createdPackage.id).to.exist(); - data.getPackage({ id: createdPackage.id }, (err, retrievedPackage) => { - expect(err).to.not.exist(); - expect(retrievedPackage).to.equal(createdPackage); - done(); - }); - }); - }); - }); - }); - - describe('getPackages()', () => { - it('retrieves packages using with the same type', (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - - const clientPackage1 = { - name: 'small', - type: 'mem-small', - memory: 12123413, - disk: 4224243, - swap: 1224324, - lwps: 12, - vcpus: 1, - version: '', - group: '' - }; - - const clientPackage2 = { - name: 'smaller', - type: 'mem-small', - memory: 1213, - disk: 243, - swap: 1324, - lwps: 1, - vcpus: 1, - version: '', - group: '' - }; - - data.createPackage(clientPackage1, (err, createdPackage1) => { - expect(err).to.not.exist(); - data.createPackage(clientPackage2, (err, createdPackage2) => { - expect(err).to.not.exist(); - - data.getPackages({ type: clientPackage1.type }, (err, packages) => { - expect(err).to.not.exist(); - expect(packages.length).to.be.greaterThan(1); - done(); - }); - }); - }); - }); - }); - }); -}); - -// skipping by default since it takes so long -describe.skip('scale()', () => { - it('creates new instances of a service', { timeout: 180000 }, (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - data.provisionManifest(clientManifest, (err, manifest) => { - expect(err).to.not.exist(); - setTimeout(() => { - data.getDeploymentGroup({ id: deploymentGroup.id }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - deploymentGroup.services().then((deploymentGroupServices) => { - data.scale({ id: deploymentGroupServices[0].id, replicas: 3 }, (err, version) => { - expect(err).to.not.exist(); - expect(version).to.exist(); - expect(version.scale[0].replicas).to.equal(3); - done(); - }); - }); - }); - }, 80000); - }); - }); - }); - }); -}); - - -// skipping by default since it takes so long -describe.skip('stopServices()', () => { - it('stops all instances of a service', { timeout: 180000 }, (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - data.provisionManifest(clientManifest, (err, manifest) => { - expect(err).to.not.exist(); - setTimeout(() => { - data.getDeploymentGroup({ id: deploymentGroup.id }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - deploymentGroup.services().then((deploymentGroupServices) => { - data.stopServices({ ids: [deploymentGroupServices[0].id] }, (err, services) => { - expect(err).to.not.exist(); - expect(services).to.exist(); - done(); - }); - }); - }); - }, 80000); - }); - }); - }); - }); -}); - -// skipping by default since it takes so long -describe.skip('startServices()', () => { - it('starts all instances of a service', { timeout: 180000 }, (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - data.provisionManifest(clientManifest, (err, manifest) => { - expect(err).to.not.exist(); - setTimeout(() => { - data.getDeploymentGroup({ id: deploymentGroup.id }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - deploymentGroup.services().then((deploymentGroupServices) => { - data.startServices({ ids: [deploymentGroupServices[0].id] }, (err, services) => { - expect(err).to.not.exist(); - expect(services).to.exist(); - done(); - }); - }); - }); - }, 80000); - }); - }); - }); - }); -}); - -// skipping by default since it takes so long -describe.skip('restartServices()', () => { - it('restarts all instances of a service', { timeout: 180000 }, (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - data.provisionManifest(clientManifest, (err, manifest) => { - expect(err).to.not.exist(); - setTimeout(() => { - data.getDeploymentGroup({ id: deploymentGroup.id }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - deploymentGroup.services().then((deploymentGroupServices) => { - data.restartServices({ ids: [deploymentGroupServices[0].id] }, (err, services) => { - expect(err).to.not.exist(); - expect(services).to.exist(); - done(); - }); - }); - }); - }, 80000); - }); - }); - }); - }); -}); - -// skipping by default since it takes so long -describe.skip('deleteServices()', () => { - it('deletes all instances of a service', { timeout: 180000 }, (done) => { - const data = new PortalData(internals.options); - data.connect((err) => { - expect(err).to.not.exist(); - data.createDeploymentGroup({ name: 'something' }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - const clientManifest = { - deploymentGroupId: deploymentGroup.id, - type: 'compose', - format: 'yaml', - raw: internals.composeFile - }; - data.provisionManifest(clientManifest, (err, manifest) => { - expect(err).to.not.exist(); - setTimeout(() => { - data.getDeploymentGroup({ id: deploymentGroup.id }, (err, deploymentGroup) => { - expect(err).to.not.exist(); - deploymentGroup.services().then((deploymentGroupServices) => { - data.deleteServices({ ids: [deploymentGroupServices[0].id] }, (err, services) => { - expect(err).to.not.exist(); - expect(services).to.exist(); - done(); - }); - }); - }); - }, 80000); - }); - }); - }); - }); -}); diff --git a/packages/portal-api/test/data/unit.js b/packages/portal-api/test/data/unit.js deleted file mode 100644 index 2f48f4ad..00000000 --- a/packages/portal-api/test/data/unit.js +++ /dev/null @@ -1,129 +0,0 @@ -'use strict'; - -const Http = require('http'); -const { describe, it, expect } = exports.lab = require('lab').script(); -const PortalData = require('../../lib/data'); - - -describe('getMetrics()', () => { - it('queries prometheus for the instance metrics', (done) => { - const server = Http.createServer((req, res) => { - const payload = JSON.stringify({ 'status': 'success', 'data': { 'resultType': 'matrix', 'result': [{ 'metric': { '__name__': 'mem_agg_usage', 'instance': 'joyentportal_compose-api_1', 'job': 'triton' }, 'values': [[1502896217.371, '60518400'], [1502899817.371, '60641280'], [1502903417.371, '60575744']] } ] } }); - res.writeHead(200, { 'Content-Type': 'application/json' }); - res.end(payload); - }); - - server.listen(9090, (err) => { - expect(err).to.not.exist(); - - const options = { - deploymentGroupId: 'deploymentGroup', - names: ['AVG_MEM_BYTES'], - instances: ['joyentportal_compose-api_1'], - start: new Date(Date.now() - 10000).toISOString(), - end: new Date(Date.now()).toISOString() - }; - - const dataThis = { - getServices: ({ deploymentGroupId, name }, next) => { - const instance = { - machine_id: 'machineId' - }; - - const service = { - instances: () => { return Promise.resolve([instance]); } - }; - - next(null, [service]); - }, - _triton: { - getInstance: (id, next) => { - const tritonInstance = { - primaryIp: 'localhost' - }; - - next(null, tritonInstance); - } - } - }; - - - PortalData.prototype.getMetrics.call(dataThis, options, (err, metrics) => { - expect(err).to.not.be.an.error(); - expect(metrics.length).to.equal(1); - expect(metrics[0].name).to.equal('AVG_MEM_BYTES'); - server.close(() => { return done(); }); - }); - }); - }); -}); - - -describe('getInstance()', () => { - it('retrieves an instance that can also be used to query for metrics', (done) => { - const server = Http.createServer((req, res) => { - const payload = JSON.stringify({ 'status': 'success', 'data': { 'resultType': 'matrix', 'result': [{ 'metric': { '__name__': 'mem_agg_usage', 'instance': 'joyentportal_compose-api_1', 'job': 'triton' }, 'values': [[1502896217.371, '60518400'], [1502899817.371, '60641280'], [1502903417.371, '60575744']] }] } }); - res.writeHead(200, { 'Content-Type': 'application/json' }); - res.end(payload); - }); - - server.listen(9090, (err) => { - expect(err).to.not.exist(); - - const FakePortalData = function () { - this._db = { - instances: { - single: (options, next) => { - expect(options.id).to.exist(); - const instance = { - id: options.id, - deployment_group_id: 'deploymentGroup', - service_id: 'service', - machine_id: 'joyentportal_compose-api_1' - }; - - next(null, instance); - } - } - }; - - this._triton = { - getInstance: (id, next) => { - const tritonInstance = { - primaryIp: 'localhost' - }; - - next(null, tritonInstance); - } - }; - }; - FakePortalData.prototype = PortalData.prototype; - - FakePortalData.prototype.getServices = ({ deploymentGroupId, name }, next) => { - const instance = { - machine_id: 'machineId' - }; - - const service = { - instances: () => { return Promise.resolve([instance]); } - }; - - next(null, [service]); - }; - - const fakePortalData = new FakePortalData(); - - fakePortalData.getInstance({ id: 'joyentportal_compose-api_1' }, (err, instance) => { - expect(err).to.not.be.an.error(); - expect(instance).to.exist(); - instance.metrics({ names: ['AVG_MEM_BYTES'], start: new Date(Date.now() - 10000).toISOString(), end: new Date(Date.now()).toISOString() }).catch((err) => { - expect(err).to.not.exist(); - }).then((metrics) => { - expect(metrics.length).to.equal(1); - expect(metrics[0].name).to.equal('AVG_MEM_BYTES'); - server.close(() => { return done(); }); - }); - }); - }); - }); -}); diff --git a/packages/portal-api/test/example-compose.yml b/packages/portal-api/test/example-compose.yml deleted file mode 100644 index d694b249..00000000 --- a/packages/portal-api/test/example-compose.yml +++ /dev/null @@ -1,24 +0,0 @@ -consul: - image: autopilotpattern/consul:0.7.2-r0.8 - restart: always - dns: - - 127.0.0.1 - labels: - - triton.cns.services=consul - ports: - - "8500:8500" - environment: - - CONSUL=consul.svc.30f62ec2-24a2-6f8e-8fad-d46b04c8a0b9.us-sw-1.cns.joyent.com - command: > - /usr/local/bin/containerpilot - /bin/consul agent -server - -config-dir=/etc/consul - -log-level=err - -ui-dir /ui -nats: - image: autopilotpattern/nats:0.9.6-r1.0.0 - restart: always - environment: - - CONSUL=consul.svc.30f62ec2-24a2-6f8e-8fad-d46b04c8a0b9.us-sw-1.cns.joyent.com - - NATS_USER=ruser - - NATS_PASSWORD=H4HelAN diff --git a/packages/portal-api/test/index.js b/packages/portal-api/test/index.js deleted file mode 100644 index 09a97f8d..00000000 --- a/packages/portal-api/test/index.js +++ /dev/null @@ -1,155 +0,0 @@ -'use strict'; - -const Hapi = require('hapi'); -const { describe, it, beforeEach, afterEach, expect } = exports.lab = require('lab').script(); -const PortalData = require('../lib/data'); -const PortalApi = require('../'); - - -const internals = { - options: { - data: { - name: 'test', - db: { test: true, host: 'rethinkdb' }, - server: { - log: function () { } - } - } - } -}; - -internals.register = { register: PortalApi, options: internals.options }; - -describe('portal-api plugin', () => { - it('can be registered with hapi', (done) => { - const server = new Hapi.Server(); - server.connection(); - server.register(internals.register, (err) => { - expect(err).to.not.exist(); - done(); - }); - }); -}); - -describe('graphql', () => { - it('route exists', (done) => { - const server = new Hapi.Server(); - server.connection(); - server.register(internals.register, (err) => { - expect(err).to.not.exist(); - const url = '/graphql?query=%7B%0A%20%20deploymentGroups(name%3A%22hi%22%2C%20slug%3A%20%22hi%22)%20%7B%0A%20%20%20%20id%0A%20%20%7D%0A%7D'; - - server.inject({ method: 'GET', url }, (res) => { - expect(res.statusCode).to.equal(200); - expect(res.result.data).to.exist(); - done(); - }); - }); - }); - - it('can query for a deployment group inside a portal', (done) => { - const server = new Hapi.Server(); - server.connection(); - server.register(internals.register, (err) => { - expect(err).to.not.exist(); - - const payload = { - query: '{ portal { datacenter { region }, deploymentGroups(name: "test1") { name, slug } } }' - }; - - server.inject({ method: 'POST', url: '/graphql', payload }, (res) => { - expect(res.statusCode).to.equal(200); - expect(res.result.data).to.exist(); - expect(res.result.data.portal.deploymentGroups[0].name).to.equal('test1'); - done(); - }); - }); - }); - - it('defaults to all deployment groups inside a portal', (done) => { - const server = new Hapi.Server(); - server.connection(); - server.register(internals.register, (err) => { - expect(err).to.not.exist(); - - const payload = { - query: '{ portal { datacenter { region }, deploymentGroups { name, slug } } }' - }; - - server.inject({ method: 'POST', url: '/graphql', payload }, (res) => { - expect(res.statusCode).to.equal(200); - expect(res.result.data).to.exist(); - expect(res.result.data.portal.deploymentGroups.length).to.equal(2); - done(); - }); - }); - }); - - it('can sub-filter services for a deployment group', (done) => { - const server = new Hapi.Server(); - server.connection(); - server.register(internals.register, (err) => { - expect(err).to.not.exist(); - - const payload = { - query: '{ portal { datacenter { region }, deploymentGroups(name: "test") { name, services(name: "service") { name } } } }' - }; - - server.inject({ method: 'POST', url: '/graphql', payload }, (res) => { - expect(res.statusCode).to.equal(200); - console.log(res.result.data); - const deploymentGroup = res.result.data.portal.deploymentGroups[0]; - expect(deploymentGroup.name).to.equal('test'); - expect(deploymentGroup.services[0].name).to.equal('service'); - done(); - }); - }); - }); - - beforeEach((done) => { - const data = new PortalData(internals.options.data); - data.connect(() => { - data.createDatacenter({ region: 'us-sw', name: 'us-sw' }, (err, datacenter) => { - if (err) { - return done(err); - } - - data.createUser({ firstName: 'Nikola', lastName: 'Tesla', email: 'nikola@tesla.com', login: 'nikola' }, (err, user) => { - if (err) { - return done(err); - } - - data.createPortal({ - user, - datacenter - }, (err, portal) => { - if (err) { - return done(err); - } - - data.createDeploymentGroup({ name: 'test1' }, () => { - data.createDeploymentGroup({ name: 'test2' }, (err, deploymentGroup) => { - if (err) { - return done(err); - } - - data.createService({ - name: 'service', - slug: 'service_slug', - deploymentGroupId: deploymentGroup.id - }, () => { done(); }); - }); - }); - }); - }); - }); - }); - }); - - afterEach((done) => { - const data = new PortalData(internals.options.data); - data.connect(() => { - data._db.r.dbDrop('test').run(data._db._connection, done); - }); - }); -}); diff --git a/packages/portal-api/test/prestart.sh b/packages/portal-api/test/prestart.sh deleted file mode 100755 index d0e7bff6..00000000 --- a/packages/portal-api/test/prestart.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -# Copy creds from env vars to files on disk -if [ -n ${!TRITON_CREDS_PATH} ] \ - && [ -n ${!TRITON_CA} ] \ - && [ -n ${!TRITON_CERT} ] \ - && [ -n ${!TRITON_KEY} ] -then - mkdir -p ${TRITON_CREDS_PATH} - echo -e "${TRITON_CA}" | tr '#' '\n' > ${TRITON_CREDS_PATH}/ca.pem - echo -e "${TRITON_CERT}" | tr '#' '\n' > ${TRITON_CREDS_PATH}/cert.pem - echo -e "${TRITON_KEY}" | tr '#' '\n' > ${TRITON_CREDS_PATH}/key.pem -fi - -eval `/usr/bin/ssh-agent -s` -mkdir -p ~/.ssh -echo -e "${SDC_KEY_PUB}" | tr '#' '\n' > ~/.ssh/id_rsa.pub -echo -e "${SDC_KEY}" | tr '#' '\n' > ~/.ssh/id_rsa -chmod 400 ~/.ssh/id_rsa.pub -chmod 400 ~/.ssh/id_rsa -ssh-add ~/.ssh/id_rsa - -keyid=$(ssh-keygen -E md5 -lf ~/.ssh/id_rsa.pub | awk '{print $2}' | cut -d':' -f2-) - -containerpilot -putenv "SSH_KEYID=$keyid" - - -IS_RETHINK_DOWN=1 -until [ $IS_RETHINK_DOWN -eq 0 ]; do - curl -o /dev/null --fail -s -m 10 http://rethinkdb:8080 - IS_RETHINK_DOWN=$(echo $?) -done diff --git a/packages/portal-api/test/watch/container-pilot.js b/packages/portal-api/test/watch/container-pilot.js deleted file mode 100644 index ea062fb3..00000000 --- a/packages/portal-api/test/watch/container-pilot.js +++ /dev/null @@ -1,143 +0,0 @@ -'use strict'; - -const { it } = exports.lab = require('lab').script(); -const Uuid = require('uuid/v4'); - -const ContainerPilotWatch = require('../../lib/watch/container-pilot'); -const DataMock = require('../_mocks/data'); -const TritonMock = require('../_mocks/triton'); - - -it.skip('sets instance health statuses appropriately', (done) => { - const networks = [{ - id: Uuid(), - 'public': false, - subnet: '192.168.1.0/24' - }, { - id: Uuid(), - 'public': true - }]; - - const machines = [{ - id: Uuid(), - ips: ['192.168.1.1', '72.2.119.1'], - networks: networks.map(({ id }) => { - return id; - }) - }, { - id: Uuid(), - ips: ['192.168.1.2', '72.2.119.2'], - networks: networks.map(({ id }) => { - return id; - }) - }, { - id: Uuid(), - ips: ['192.168.1.3', '72.2.119.3'], - networks: networks.map(({ id }) => { - return id; - }) - }, { - id: Uuid(), - ips: ['192.168.1.4', '72.2.119.4'], - networks: networks.map(({ id }) => { - return id; - }) - }, { - id: Uuid(), - ips: ['192.168.1.5', '72.2.119.5'], - networks: networks.map(({ id }) => { - return id; - }) - }, { - id: Uuid(), - ips: ['192.168.1.6', '72.2.119.6'], - networks: networks.map(({ id }) => { - return id; - }) - }, { - id: Uuid(), - ips: ['192.168.1.7', '72.2.119.7'], - networks: networks.map(({ id }) => { - return id; - }) - }]; - - const deploymentGroups = [{ - id: Uuid() - }, { - id: Uuid() - }]; - - const services = [{ - name: 'mysql', - id: Uuid(), - deploymentGroupId: deploymentGroups[0].id - }, { - name: 'api', - id: Uuid(), - deploymentGroupId: deploymentGroups[0].id - }, { - name: 'frontend', - id: Uuid(), - deploymentGroupId: deploymentGroups[0].id - }, { - name: 'redis', - id: Uuid(), - deploymentGroupId: deploymentGroups[1].id - }, { - name: 'auth', - id: Uuid(), - deploymentGroupId: deploymentGroups[1].id - }]; - - const instances = [{ - id: Uuid(), - serviceId: services[0].id, - machineId: machines[0].id - }, { - id: Uuid(), - serviceId: services[0].id, - machineId: machines[1].id - }, { - id: Uuid(), - serviceId: services[0].id, - machineId: machines[2].id - }, { - id: Uuid(), - serviceId: services[1].id, - machineId: machines[3].id - }, { - id: Uuid(), - serviceId: services[2].id, - machineId: machines[4].id - }, { - id: Uuid(), - serviceId: services[3].id, - machineId: machines[5].id - }, { - id: Uuid(), - serviceId: services[4].id, - machineId: machines[6].id - }]; - - const watch = new ContainerPilotWatch({ - data: DataMock({ - deploymentGroups, - services, - instances - }), - Triton: TritonMock({ - machines, - networks - }) - }); - - watch.on('error', (err) => { - done(err); - }); - - watch.check((err, data) => { - console.log(err, data); - done(err); - }); -}); diff --git a/packages/portal-api/test/watch/machines.js b/packages/portal-api/test/watch/machines.js deleted file mode 100644 index 88a590e4..00000000 --- a/packages/portal-api/test/watch/machines.js +++ /dev/null @@ -1,87 +0,0 @@ -'use strict'; - -const { it, expect } = exports.lab = require('lab').script(); -const PortalWatch = require('../../lib/watch/machines'); - - -it('updates instances with the current status', (done) => { - const machine = { - id: 'test-id', - tags: { - 'docker:label:com.docker.compose.project': 'test-project', - 'docker:label:com.docker.compose.service': 'test-service', - 'docker:label:com.docker.compose.config-hash': 'test-hash' - }, - state: 'deleted' - }; - - const data = { - getDeploymentGroup: (options, next) => { - expect(options.name).to.equal('test-project'); - next(null, { id: 'deployment-group-id' }); - }, - getServices: (options, next) => { - expect(options.deploymentGroupId).to.equal('deployment-group-id'); - expect(options.name).to.equal('test-service'); - next(null, [{ - id: 'service-id', - instances: () => { - return Promise.resolve([{ - machineId: machine.id, - id: 'instance-id' - }]); - } - }]); - }, - updateInstance: (options, next) => { - expect(options.id).to.equal('instance-id'); - expect(options.status).to.equal('DELETED'); - done(); - } - }; - - const portalOptions = { data, url: 'url', account: 'account', keyId: process.env.SSH_KEYID || 'de:e7:73:9a:aa:91:bb:3e:72:8d:cc:62:ca:58:a2:ec' }; - const portalWatch = new PortalWatch(portalOptions); - portalWatch._tritonWatch.removeAllListeners('change'); - - portalWatch.onChange(machine); -}); - -it('creates new instance', (done) => { - const machine = { - id: 'test-id', - tags: { - 'docker:label:com.docker.compose.project': 'test-project', - 'docker:label:com.docker.compose.service': 'test-service', - 'docker:label:com.docker.compose.config-hash': 'test-hash' - }, - state: 'created' - }; - - const data = { - getDeploymentGroup: (options, next) => { - expect(options.name).to.equal('test-project'); - next(null, { id: 'deployment-group-id' }); - }, - getServices: (options, next) => { - expect(options.deploymentGroupId).to.equal('deployment-group-id'); - expect(options.name).to.equal('test-service'); - next(null, [{ - id: 'service-id', - instances: () => { return Promise.resolve([]); } - }]); - }, - createInstance: (options, next) => { - expect(options.id).to.equal(undefined); - expect(options.status).to.equal('CREATED'); - expect(options.machineId).to.equal('test-id'); - done(); - } - }; - - const portalOptions = { data, url: 'url', account: 'account', keyId: process.env.SSH_KEYID || 'de:e7:73:9a:aa:91:bb:3e:72:8d:cc:62:ca:58:a2:ec' }; - const portalWatch = new PortalWatch(portalOptions); - portalWatch._tritonWatch.removeAllListeners('change'); - - portalWatch.onChange(machine); -}); diff --git a/setup.sh b/setup.sh deleted file mode 100755 index 391a1607..00000000 --- a/setup.sh +++ /dev/null @@ -1,200 +0,0 @@ -#!/bin/bash -set -e -o pipefail - -help() { - echo - echo 'Usage ./setup.sh ~/path/to/TRITON_PRIVATE_KEY ~/path/to/CA_CRT ~/path/to/SERVER_KEY ~/path/to/SERVER_CRT' - echo - echo 'Checks that your Triton and Docker environment is sane and configures' - echo 'an environment file to use.' - echo - echo 'TRITON_PRIVATE_KEY is the filesystem path to an SSH private key' - echo 'used to connect to Triton.' - echo - echo 'CA_CRT is the filesystem path to a certificate authority crt file.' - echo - echo 'SERVER_KEY is the filesystem path to a TLS server key file.' - echo - echo 'SERVER_CRT is the filesystem path to a TLS server crt file.' - echo -} - -# Check for correct configuration -check() { - - if [ -z "$1" ]; then - tput rev # reverse - tput bold # bold - echo 'Please provide a path to a SSH private key to access Triton.' - tput sgr0 # clear - - help - exit 1 - fi - - if [ ! -f "$1" ]; then - tput rev # reverse - tput bold # bold - echo 'SSH private key for Triton is unreadable.' - tput sgr0 # clear - - help - exit 1 - fi - - # Assign args to named vars - TRITON_PRIVATE_KEY_PATH=$1 - - - if [ -z "$2" ]; then - tput rev # reverse - tput bold # bold - echo 'Please provide a path to the NGINX CA crt file.' - tput sgr0 # clear - - help - exit 1 - fi - - if [ ! -f "$2" ]; then - tput rev # reverse - tput bold # bold - echo 'CA certificate for NGINX is unreadable.' - tput sgr0 # clear - - help - exit 1 - fi - - NGINX_CA_CRT_PATH=$2 - - - if [ -z "$3" ]; then - tput rev # reverse - tput bold # bold - echo 'Please provide a path to the server key file.' - tput sgr0 # clear - - help - exit 1 - fi - - if [ ! -f "$3" ]; then - tput rev # reverse - tput bold # bold - echo 'Server key file for NGINX is unreadable.' - tput sgr0 # clear - - help - exit 1 - fi - - NGINX_SERVER_KEY_PATH=$3 - - - if [ -z "$4" ]; then - tput rev # reverse - tput bold # bold - echo 'Please provide a path to the server crt file.' - tput sgr0 # clear - - help - exit 1 - fi - - if [ ! -f "$4" ]; then - tput rev # reverse - tput bold # bold - echo 'Server crt file for NGINX is unreadable.' - tput sgr0 # clear - - help - exit 1 - fi - - NGINX_SERVER_CRT_PATH=$4 - - command -v docker >/dev/null 2>&1 || { - echo - tput rev # reverse - tput bold # bold - echo 'Docker is required, but does not appear to be installed.' - tput sgr0 # clear - echo 'See https://docs.joyent.com/public-cloud/api-access/docker' - exit 1 - } - - command -v triton >/dev/null 2>&1 || { - echo - tput rev # reverse - tput bold # bold - echo 'Error! Joyent Triton CLI is required, but does not appear to be installed.' - tput sgr0 # clear - echo 'See https://www.joyent.com/blog/introducing-the-triton-command-line-tool' - exit 1 - } - - TRITON_USER=$(triton profile get | awk -F": " '/account:/{print $2}') - TRITON_DC=$(triton profile get | awk -F"/" '/url:/{print $3}' | awk -F'.' '{print $1}') - TRITON_ACCOUNT=$(triton account get | awk -F": " '/id:/{print $2}') - - echo '# docker-compose-client for Triton' > _env - TRITON_CREDS_PATH=/root/.triton - echo TRITON_CREDS_PATH=${TRITON_CREDS_PATH} >> _env - echo DOCKER_CERT_PATH=${TRITON_CREDS_PATH} >> _env - echo DOCKER_TLS_VERIFY=1 >> _env - echo COMPOSE_HTTP_TIMEOUT=300 >> _env - echo DOCKER_CLIENT_TIMEOUT=300 >> _env - echo DOCKER_HOST=${DOCKER_HOST} >> _env - echo SDC_URL=${SDC_URL} >> _env - echo SDC_ACCOUNT=${SDC_ACCOUNT} >> _env - echo SDC_KEY_ID=${SDC_KEY_ID} >> _env - echo TRITON_ACCOUNT=${TRITON_USER} >> _env - echo TRITON_USER=${TRITON_USER} >> _env - echo TRITON_DC=${TRITON_DC} >> _env - echo CONSUL=copilot-consul.svc.${TRITON_ACCOUNT}.${TRITON_DC}.cns.joyent.com >> _env - echo TRITON_CA=$(cat "${DOCKER_CERT_PATH}"/ca.pem | tr '\n' '#') >> _env - echo TRITON_CA_PATH=${TRITON_CREDS_PATH}/ca.pem >> _env - echo TRITON_KEY=$(cat "${DOCKER_CERT_PATH}"/key.pem | tr '\n' '#') >> _env - echo TRITON_KEY_PATH=${TRITON_CREDS_PATH}/key.pem >> _env - echo TRITON_CERT=$(cat "${DOCKER_CERT_PATH}"/cert.pem | tr '\n' '#') >> _env - echo TRITON_CERT_PATH=${TRITON_CREDS_PATH}/cert.pem >> _env - - echo SDC_KEY=$(cat "${TRITON_PRIVATE_KEY_PATH}" | tr '\n' '#') >> _env - echo SDC_KEY_PUB=$(cat "${TRITON_PRIVATE_KEY_PATH}.pub" | tr '\n' '#') >> _env - - echo NGINX_CA_CRT=$(cat "${NGINX_CA_CRT_PATH}" | tr '\n' '#') >> _env - echo NGINX_SERVER_KEY=$(cat "${NGINX_SERVER_KEY_PATH}" | tr '\n' '#') >> _env - echo NGINX_SERVER_CRT=$(cat "${NGINX_SERVER_CRT_PATH}" | tr '\n' '#') >> _env - - echo >> _env -} - -# --------------------------------------------------- -# parse arguments - -# Get function list -funcs=($(declare -F -p | cut -d " " -f 3)) - -until - if [ ! -z "$1" ]; then - # check if the first arg is a function in this file, or use a default - if [[ " ${funcs[@]} " =~ " $1 " ]]; then - cmd=$1 - shift 1 - else - cmd="check" - fi - - $cmd "$@" - if [ $? == 127 ]; then - help - fi - - exit - else - help - fi -do - echo -done diff --git a/triton-compose.yml b/triton-compose.yml deleted file mode 100644 index 7378546b..00000000 --- a/triton-compose.yml +++ /dev/null @@ -1,114 +0,0 @@ -############################################################################# -# CONSUL -# -# Consul is the service catalog that helps discovery between the components -# Change "-bootstrap" to "-bootstrap-expect 3", then scale to 3 or more to -# turn this into an HA Consul raft. -############################################################################# -consul: - image: autopilotpattern/consul:0.7.2-r0.8 - command: > - /usr/local/bin/containerpilot - /bin/consul agent -server - -config-dir=/etc/consul - -log-level=err - -bootstrap-expect 1 - -ui-dir /ui - restart: always - mem_limit: 128m - labels: - - triton.cns.services=copilot-consul - ports: - - 8500:8500 - -############################################################################# -# PROMETHEUS -# -# Prometheus is an open source performance monitoring tool -# it is included here for demo purposes and is not required -############################################################################# -prometheus: - image: autopilotpattern/prometheus:1.7.1-r24 - restart: always - mem_limit: 1g - ports: - - 9090:9090 - labels: - # This label sets the CNS name, Triton's automatic DNS - # Learn more at https://docs.joyent.com/public-cloud/network/cns - - triton.cns.services=prometheus - # This label selects the proper Joyent resource package - # https://www.joyent.com/blog/optimizing-docker-on-triton#ram-cpu-and-disk-resources-for-your-containers - - com.joyent.package=g4-highcpu-1G - env_file: - - _env - environment: - - CONSUL_AGENT=1 - - -rethinkdb: - image: autopilotpattern/rethinkdb:2.3.5r1 - restart: always - mem_limit: 1g - env_file: - - _env - environment: - - CONSUL_AGENT=1 - expose: - - 28015 - - 29015 - - -############################################################################# -# FRONTEND -############################################################################# -frontend: - image: joyent/copilot-frontend:1.3.4 - mem_limit: 512m - labels: - - triton.cns.services=copilot - env_file: - - _env - environment: - - PORT=443 - ports: - - "80:80" - - "443:443" - restart: always - - -############################################################################# -# BACKEND -############################################################################# -api: - image: joyent/copilot-api:1.8.8 - mem_limit: 1g - expose: - - 3000 - env_file: - - _env - environment: - - PORT=3000 - restart: always - -# Docker-compose wrapper -# Create _env file from running ./setup.sh -compose-api: - image: joyent/copilot-compose:1.1.0 - expose: - - 4242 - env_file: - - _env - restart: always - -rethinkdb: - image: autopilotpattern/rethinkdb:2.3.5r2 - restart: always - mem_limit: 1g - env_file: - - _env - environment: - - CONSUL_AGENT=1 - expose: - - 28015 - - 29015